my-idlers/node_modules/collect.js/dist/methods/transform.js
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

19 lines
351 B
JavaScript

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