You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
4 years ago
|
'use strict';
|
||
|
|
||
|
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
||
|
|
||
|
module.exports = function mapWithKeys(fn) {
|
||
|
var _this = this;
|
||
|
|
||
|
var collection = {};
|
||
|
|
||
|
if (Array.isArray(this.items)) {
|
||
|
this.items.forEach(function (item) {
|
||
|
var _fn = fn(item),
|
||
|
_fn2 = _slicedToArray(_fn, 2),
|
||
|
keyed = _fn2[0],
|
||
|
value = _fn2[1];
|
||
|
|
||
|
collection[keyed] = value;
|
||
|
});
|
||
|
} else {
|
||
|
Object.keys(this.items).forEach(function (key) {
|
||
|
var _fn3 = fn(_this.items[key]),
|
||
|
_fn4 = _slicedToArray(_fn3, 2),
|
||
|
keyed = _fn4[0],
|
||
|
value = _fn4[1];
|
||
|
|
||
|
collection[keyed] = value;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
return new this.constructor(collection);
|
||
|
};
|