2.1.2 • Published 6 years ago

asynciterator-union v2.1.2

Weekly downloads
20
License
MIT
Repository
github
Last release
6 years ago

Async Union Iterator

Build Status Coverage Status npm version Greenkeeper badge

An AsyncIterator for taking the union of different AsyncIterators.

As of version 1.2.0, this requires Node version 8 or higher.

Usage

const RoundRobinUnionIterator = require('asynciterator-union').RoundRobinUnionIterator;

let it = new RoundRobinUnionIterator([AsyncIterator.range(0, 2), AsyncIterator.range(2, 4)]);
it.on('data', console.log);

License

This software is written by Ruben Taelman.

This code is released under the MIT license.

2.1.2

6 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago