Function keyBy

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

    Type Parameters

    • T

    Parameters

    • collection: ArrayLike<T>

      The collection to iterate over.

    • Optionaliteratee: (obj: T) => any

      The iteratee to transform keys.

    Returns Record<string, T>

    Returns the composed aggregate object.

    5.6.0

    [[groupBy]],[[partition]]

    const array = [
    { 'dir': 'left', 'code': 97 },
    { 'dir': 'right', 'code': 100 }
    ]

    keyBy(array, ({ code }) => String.fromCharCode(code))
    // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }