InventoryTrack/node_modules/to-readable-stream
2022-11-02 22:16:03 -04:00
..
index.js First Push 2022-11-02 22:16:03 -04:00
license First Push 2022-11-02 22:16:03 -04:00
package.json First Push 2022-11-02 22:16:03 -04:00
readme.md First Push 2022-11-02 22:16:03 -04:00

to-readable-stream Build Status

Convert a string/Buffer/Uint8Array to a readable stream

Install

$ npm install to-readable-stream

Usage

const toReadableStream = require('to-readable-stream');

toReadableStream('🦄🌈').pipe(process.stdout);

API

toReadableStream(input)

Returns a stream.Readable.

input

Type: string Buffer Uint8Array

Value to convert to a stream.

License

MIT © Sindre Sorhus