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

x/stream_observables/combiners/mod.ts>concat

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

Creates an output Observable which sequentially emits all values from given Observable and then moves on to the next.

Parameters

...os: Array<Observable<T>>

Observables to concatenate.

Returns

Observable that emits items from all observables.