Pacote
    Preparing search index...

    Function associate

    • Creates a new record from an array of arbitrary values passing each through a transformation function to obtain tuples of the target record's keys and values.

      Type Parameters

      • T
      • K extends string | number | symbol
      • V

      Parameters

      • transform: (value: T) => [K, V]

        Transformation function.

      • array: readonly T[]

        Array to transform into a Record.

      Returns Record<K, V>

      Record version of the array with the computed keys and values.

      import { associate } from '@pacote/array'

      associate((s) => [s, s.length], ['abc', 'd']) // => { 'abc': 3, 'd': 1 }