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.
Transformation function.
Array to transform into a Record.
Record
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 } Copy
import { associate } from '@pacote/array'associate((s) => [s, s.length], ['abc', 'd']) // => { 'abc': 3, 'd': 1 }
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.