Skip to main content
Module

x/rambda/immutable.d.ts>fromPairs

Faster and smaller alternative to Ramda
Latest
function fromPairs
import { fromPairs } from "https://deno.land/x/rambda@v9.2.0/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; }