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]'; };
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
example | Folder | 0755 |
|
|
.travis.yml | File | 43 B | 0644 |
|
LICENSE | File | 1.05 KB | 0644 |
|
README.markdown | File | 1.14 KB | 0644 |
|
index.js | File | 345 B | 0644 |
|
package.json | File | 1.8 KB | 0644 |
|