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

x/rambda/index.d.ts>zip

Faster and smaller alternative to Ramda
Latest
function zip
import { zip } from "https://deno.land/x/rambda@9.2.1/index.d.ts";

It will return a new array containing tuples of equally positions items from both x and y lists.

The returned list will be truncated to match the length of the shortest supplied list.

Parameters

x: K[]
y: V[]

Returns

KeyValuePair<K, V>[]

Returns

<V>(y: V[]) => KeyValuePair<K, V>[]