This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
280 B
JavaScript
Raw Normal View History

2021-04-02 02:24:13 +03:00
module.exports = function (xs, f) {
if (xs.map) return xs.map(f);
var res = [];
for (var i = 0; i < xs.length; i++) {
var x = xs[i];
if (hasOwn.call(xs, i)) res.push(f(x, i, xs));
}
return res;
};
var hasOwn = Object.prototype.hasOwnProperty;