8000 GitHub - sindresorhus/into-stream: Convert a string/promise/array/iterable/asynciterable/buffer/typedarray/arraybuffer/object into a stream
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

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

License

Notifications You must be signed in to change notification settings

sindresorhus/into-stream

Repository files navigation

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

About

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

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 9

0