4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-03-15 07:41:03 +08:00
2016-02-24 09:50:07 -08:00

14 lines
345 B
JavaScript

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]';
};