You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nelson Jovel 6e46b46074
chore: add yarn command to put compiled stylesheets into builds folder
2 years ago
..
index.d.ts chore: add yarn command to put compiled stylesheets into builds folder 2 years ago
index.js chore: add yarn command to put compiled stylesheets into builds folder 2 years ago
license chore: add yarn command to put compiled stylesheets into builds folder 2 years ago
package.json chore: add yarn command to put compiled stylesheets into builds folder 2 years ago
readme.md chore: add yarn command to put compiled stylesheets into builds folder 2 years ago

readme.md

merge-streams

Merge multiple streams into a unified stream

Install

npm install @sindresorhus/merge-streams

Usage

import mergeStreams from '@sindresorhus/merge-streams';

const stream = mergeStreams([streamA, streamB]);

for await (const chunk of stream) {
	console.log(chunk);
	//=> 'A1'
	//=> 'B1'
	//=> 'A2'
	//=> 'B2'
}

API

mergeStreams(streams: stream.Readable[]): stream.Readable

Merges an array of readable streams and returns a new readable stream that emits data from the individual streams as it arrives.

If you provide an empty array, it returns an already-ended stream.