Converts iterable objects into readable streams.
npm install iterable-to-streamConvert iterable objects into node readable streams.
``typescript
import iterableToStream from 'iterable-to-stream';
iterableToStream(['one', 'two', 'three']).pipe(process.stdout);
``
With version 10, Node introduced stream.Readable.from
which converts an iterator to a stream.
This library will use the Node version if it is available.
This library will be deprecated when Node 12 is deprecated.
- 12.x, 14.x, 15.x
- Unsupported, but should still work: 8.x, 10.x