Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « concat-map « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b29a7812e5055ae915e771447e1380e01bf3bfdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = function (xs, fn) {
    var res = [];
    for (var i = 0; i < xs.length; i++) {
        var x = fn(xs[i], i);
        if (isArray(x)) res.push.apply(res, x);
        else res.push(x);
    }
    return res;
};

var isArray = Array.isArray || function (xs) {
    return Object.prototype.toString.call(xs) === '[object Array]';
};