mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 02:33:54 +03:00
13c7c7f611
* feat(mapKeys): add mapKeys * feat(map*): not clone object * chore. fix names on bench * feat. pass cloned object to iteratee * Fix interface * fix. fix test codes * fix. fix type error on test * Add docs * test: Check test * bench * rewrite * mapKeys * test: Do not mutate the original function --------- Co-authored-by: raon0211 <raon0211@toss.im>
795 B
795 B
mapValues
Creates a new object with the same keys as the given object, but with values generated by running each own enumerable property of the object through the iteratee function.
Signature
function mapValues<T extends Record<PropertyKey, unknown>, K extends keyof T, V>(
object: T,
getNewValue: (value: T[K], key: K, object: T) => V
): Record<K, V>;
Parameters
obj
(T extends Record<PropertyKey, unknown>
): The object to iterate over.getNewValue
: ((value: T[K], key: K, object: T) => V
): The function invoked per own enumerable property.
Returns
(Record<K, V>
): The new mapped object.
Examples
const obj = { a: 1, b: 2 };
const result = mapValues(obj, value => value * 2);
console.log(result); // { a: 2, b: 4 }