/home/techb158/balavpn.abdallabala.com/node_modules/concat-map
NameSizeModeActions
example/-0777rm
test/-0777rm
.travis.yml430666editdlrm
index.js3450666editdlrm
LICENSE10730666editdlrm
package.json9890666editdlrm
README.markdown11650666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/concat-map/index.js (345B)
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]'; };