Converts an iterable of key-value pairs into an object. This is
the inverse of Object.entries. it is a bit similar to zip
but the object is created by joining in the other axis.
Values that map to the same keys are combined into an array. The check
for this incurs a performance penalty. If you are sure there are
no repetitions, pass the noRepeat flag (as a truthy value)
to skip the checks.
Converts an iterable of key-value pairs into an object. This is the inverse of
Object.entries
. it is a bit similar to zip but the object is created by joining in the other axis.Values that map to the same keys are combined into an array. The check for this incurs a performance penalty. If you are sure there are no repetitions, pass the
noRepeat
flag (as a truthy value) to skip the checks.