Combines array of streams into one read stream in strict order.
Installation
npm install ordered-read-streams
Overview
ordered-read-streams
handles all data/errors from input streams in parallel, but emits data/errors in strict order in which streams are passed to constructor. This is objectMode = true
stream.
Example
var through = ;var Ordered = ; var s1 = through;var s2 = through;var s3 = through; var streams = s1 s2 s3;streams s1;s1; s2;s2; s3;s3;
Ouput will be:
stream 1
stream 2
stream 3
Licence
MIT