to-readable-stream

Convert a value to a ReadableStream


Keywords
stream, readablestream, string, buffer, uint8array, from, into, to, transform, convert, readable, pull, nodejs, npm-package, readable-stream
License
MIT
Install
npm install to-readable-stream@4.0.0

Documentation

to-readable-stream

Convert a value to a ReadableStream

Not to be confused with Node.js stream.Readable, in which case, stream.Readable#from() should be used instead.

Install

npm install to-readable-stream

Usage

import toReadableStream from 'to-readable-stream';

toReadableStream('🦄🌈');
//=> ReadableStream<'🦄🌈'>

API

toReadableStream(value)

Returns a ReadableStream.

value

The value to convert to a stream.

Related