Module

x/rambda/immutable.d.ts>fromPairs

Faster and smaller alternative to Ramda
Latest
function fromPairs
import { fromPairs } from "https://dotland.deno.dev/x/rambda@9.4.1/immutable.d.ts";

It transforms a listOfPairs to an object.

Parameters

listOfPairs: readonly ((readonly [number, V]))[]

Returns

{ readonly [index: number]: V; }

Parameters

listOfPairs: readonly ((readonly [string, V]))[]

Returns

{ readonly [index: string]: V; }