JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 49635589
  • Score
    100M100P100Q229686F
  • License MIT

Create a stream that emits events from multiple other streams

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.

build status

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