codeql-action/node_modules/to-readable-stream
Robert Brignull 0347b72305 replace jest with ava 2020-05-13 11:13:27 +01:00
..
index.js replace jest with ava 2020-05-13 11:13:27 +01:00
license replace jest with ava 2020-05-13 11:13:27 +01:00
package.json replace jest with ava 2020-05-13 11:13:27 +01:00
readme.md replace jest with ava 2020-05-13 11:13:27 +01:00

readme.md

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