Package Exports
- merge-stream
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (merge-stream) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
merge-stream
Merge (interleave) a bunch of streams.
Synopsis
var stream1 = new Stream();
var stream2 = new Stream();
var merged = mergeStream(stream1, stream2);
var stream3 = new Stream();
merged.add(stream3);
Description
This is the merge function from event-stream separated into a new module and given an add
method so you can dynamically add more sources to the stream.
License
MIT