Object
Mapkeys

_.mapKeys()

The opposite of _.mapValues; this method creates an object with the same values as object and keys generated by running each own enumerable string keyed property of object thru iteratee. The iteratee is invoked with three arguments: (value, key, object).

Arguments

object (Object): The object to iterate over.
[iteratee=_.identity] (Function): The function invoked per iteration.

Returns

(Object): Returns the new mapped object.

Example

Deep