UNPKG

281 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = mapObject;
7function mapObject(object, mapper) {
8 return Object.keys(object).reduce(function (result, key) {
9 result[key] = mapper(object[key], key);
10 return result;
11 }, {});
12}
\No newline at end of file