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

x/hex/src/lib/mod.ts>stdx.streams.mergeReadableStreams

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
variable stdx.streams.mergeReadableStreams
Deprecated
Deprecated

(will be removed after 0.169.0) Import from std/streams/merge_readable_streams.ts instead.

Merge multiple streams into a single one, not taking order into account. If a stream ends before other ones, the other will continue adding data, and the finished one will not add any more data.

import { stdx } from "https://deno.land/x/hex@0.6.5/src/lib/mod.ts";
const { mergeReadableStreams } = stdx.streams;