Newer
Older
CVSS_3.0_GUI / node_modules / nwjs-builder-phoenix / node_modules / globby / node_modules / glob / node_modules / minimatch / node_modules / brace-expansion / node_modules / concat-map / index.js
root on 7 May 2019 345 bytes Initial commit
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]';
};