Skip to main content
Module

x/ramda/mod.ts>zipObj

:ram: Practical functional Javascript
Latest
variable zipObj
import { zipObj } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Creates a new object out of a list of keys and a list of values. Key/value pairing is truncated to the length of the shorter of the two lists. Note: zipObj is equivalent to pipe(zip, fromPairs).