Files
roll20-character-sheets/Shadowrun6th-German/node_modules/concat-map/index.js
T
Valanor 20750d1f6e Implementing EJS-Template Engine
Adding EJS via npm
Creating ejs-templates for each Tab in the Charakter sheet
2021-03-17 13:09:13 +01: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]';
};