Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rambda/immutable.d.ts>fromPairs

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