Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/stream_observables/transforms/zip-with.ts>zipWith

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

Zips items from the original observable with the other observable. See zip.

Parameters

other: Observable<T>

Other observable to zip with.

Returns

Transform<S, [S, T]>

Transform that emits pairs of items.