- mapKeys<T>(object, iteratee?): Dictionary<T>
Parameters
- object: Nullable<ArrayLike<T>>
Optional
iteratee: ListIteratee<T>
Returns Dictionary<T>
- mapKeys<T>(object, iteratee?): Dictionary<T[keyof T]>
Parameters
- object: Nullable<T>
Optional
iteratee: ObjectIteratee<T>
Returns Dictionary<T[keyof T]>
This method creates an object with the same values as object and keys generated by running each own enumerable property of object through iteratee.