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

x/hex/src/fw/generator/deps.ts>streams.mergeReadableStreams

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
variable 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 { streams } from "https://deno.land/x/hex@0.6.5/src/fw/generator/deps.ts";
const { mergeReadableStreams } = streams;