I'm proposing we add the method Object.mapEntries()
into the language, to allow one to map one object to another object. This is a very common task, and it would make a lot of code just a little more readable if there was a canonical way to do so.
It could be defined as follows:
Object.mapEntries = (obj, mapFn) => {
const entries = Object.entries(obj)
return Object.fromEntries(entries.map(mapFn))
}
Example usage:
const users = {
NKpiZ: { name: 'Sarah', age: 5 },
UaAFu: { name: 'Samuel', age: 10 },
avTRz: { name: 'Samantha', age: 15 },
}
const userIdToAge = Object.mapEntries(users, ([id, { age }]) => [id, age])
// userIdToAge is { NKpiZ: 5, UaAFu: 10, avTRz: 15 }
const nameToAge = Object.mapEntries(users, ([, { name, age }]) => [name, age])
// nameToAge is { Sarah: 5, Samuel: 10, Samantha: 15 }
const nameToId = Object.mapEntries(users, ([id, { name, age }]) => [name, id])
// nameToId is { Sarah: 'NKpiZ', Samuel: 'UaAFu', Samantha: 'avTRz' }
We could potentially add Object.mapKeys()
and Object.mapValues()
too, but mapEntries() alone would be a big win.