function mergeReadableStreams
mergeReadableStreams<T>(...streams: ReadableStream<T>[]): ReadableStream<T>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.
Examples
Example 1
Example 1
import { mergeReadableStreams } from "@std/streams/merge_readable_streams"; const stream1 = ReadableStream.from(["1", "2", "3"]); const stream2 = ReadableStream.from(["a", "b", "c"]); // ["2", "c", "a", "b", "3", "1"] await Array.fromAsync(mergeReadableStreams(stream1, stream2));
Type Parameters
TParameters
...streams: ReadableStream<T>[]