mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 02:28:35 +00:00
17 lines
No EOL
341 B
JavaScript
Vendored
17 lines
No EOL
341 B
JavaScript
Vendored
'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);
|
|
}; |