$ npm install @iterables/chainChain multiple iterators together.
const chain = require('@iterables/chain')
console.log([...chain([1,2,3], 'abc')]) // [1, 2, 3, 'a', 'b', 'c']
$ npm install --save @iterables/chain
chain(...iterators) -> IteratorChain an arbitrary number of iterators together, returning a new iterator.
MIT