into-stream
TypeScript icon, indicating that this package has built-in type declarations

8.0.1 • Public • Published

into-stream

Convert a string/promise/array/iterable/asynciterable/buffer/typedarray/arraybuffer/object into a stream

Correctly handles backpressure.

Install

npm install into-stream

Usage

import intoStream from 'into-stream';

intoStream('unicorn').pipe(process.stdout);
//=> 'unicorn'

API

intoStream(input)

Type: Buffer | TypedArray | ArrayBuffer | string | Iterable<Buffer | string> | AsyncIterable<Buffer | string> | Promise
Returns: Readable stream

intoStream.object(input)

Type: object | Iterable<object> | AsyncIterable<object> | Promise
Returns: Readable object stream

Related

Package Sidebar

Install

npm i into-stream

Weekly Downloads

3,449,873

Version

8.0.1

License

MIT

Unpacked Size

5.46 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus