• Creates an object composed of keys generated from the results of running each element of collection through iteratee. The corresponding value of each key is the last element responsible for generating the key. The iteratee function is invoked with one argument: (value).

    Type Parameters

    • T

    Parameters

    • collection: undefined | null | List<T>

      The collection to iterate over.

    • Optionaliteratee: ValueIterateeCustom<T, PropertyName>

      The function invoked per iteration.

    Returns Dictionary<T>

    Returns the composed aggregate object.

  • Type Parameters

    • T extends object

    Parameters

    • collection: undefined | null | T
    • Optionaliteratee: ValueIterateeCustom<T[keyof T], PropertyName>

    Returns Dictionary<T[keyof T]>

    _.keyBy