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

x/stream_observables/combiners/zip.ts>zip

A collection of observables built with ReadableStreams & friends.
Latest
function zip
import { zip } from "https://deno.land/x/stream_observables@v1.3/combiners/zip.ts";

Zips items from multiple observables. The resulting observable emits items as array tuples.

Parameters

Observables to combine.

Returns

Observable that emits tuples of items.