UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

17 lines (13 loc) 414 B
'use strict'; Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); function mapValues(object, getNewValue) { const result = {}; const keys = Object.keys(object); for (let i = 0; i < keys.length; i++) { const key = keys[i]; const value = object[key]; result[key] = getNewValue(value, key, object); } return result; } exports.mapValues = mapValues;