Skip to main content
Module

x/rambda/immutable.d.ts>fromPairs

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