Files
jibo-cli/node_modules/concat-map/index.js
pasketti bceda87f93 Replace deprecated electron-prebuilt with electron@2.0.18
- Updated package.json to use electron@2.0.18 instead of electron-prebuilt@1.4.3
- Modified lib/jibo-cli.js to reference 'electron' instead of 'electron-prebuilt'
- This fixes compatibility issues with the simulator on modern Linux systems
- electron-prebuilt was deprecated and renamed to electron in 2016
2026-04-05 22:47:03 -04: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]';
};