Files
tryno10/app/code/node_modules/collect.js/dist/methods/map.js
T
2022-04-07 18:09:31 +05:30

17 lines
341 B
JavaScript

'use strict';
module.exports = function map(fn) {
var _this = this;
if (Array.isArray(this.items)) {
return new this.constructor(this.items.map(fn));
}
var collection = {};
Object.keys(this.items).forEach(function (key) {
collection[key] = fn(_this.items[key], key);
});
return new this.constructor(collection);
};