into-stream
Version:
Convert a string/promise/array/iterable/asynciterable/buffer/typedarray/arraybuffer/object into a stream
42 lines (25 loc) • 1.27 kB
Markdown
string/promise/array/iterable/asynciterable/uint8array/typedarray/arraybuffer/object into a stream
Correctly handles backpressure.
```sh
npm install into-stream
```
```js
import intoStream from 'into-stream';
intoStream('unicorn').pipe(process.stdout);
//=> 'unicorn'
```
Type: `Uint8Array | TypedArray | ArrayBuffer | string | Iterable<string | Uint8Array | TypedArray> | AsyncIterable<string | Uint8Array | TypedArray> | Promise`\
Returns: [Readable stream](https://nodejs.org/api/stream.html#class-streamreadable)
Type: `object | Iterable<object> | AsyncIterable<object> | Promise`\
Returns: [Readable object stream](https://nodejs.org/api/stream.html#object-mode)
The streams returned by this package cannot be used with the `stdio` option of Node.js [`child_process`](https://nodejs.org/api/child_process.html) methods. Use [`fs.createReadStream()`](https://nodejs.org/api/fs.html#fscreatereadstreampath-options) instead.
- [to-readable-stream](https://github.com/sindresorhus/to-readable-stream) - Simpler version of this package
- [get-stream](https://github.com/sindresorhus/get-stream) - The opposite of this package
> Convert a