Roughing out the demo app

This commit is contained in:
Nate Taylor
2019-10-23 07:41:03 -05:00
parent 5bc58a2d40
commit 94be06d3c4
2841 changed files with 274065 additions and 2 deletions

42
node_modules/to-readable-stream/readme.md generated vendored Normal file
View File

@@ -0,0 +1,42 @@
# to-readable-stream [![Build Status](https://travis-ci.org/sindresorhus/to-readable-stream.svg?branch=master)](https://travis-ci.org/sindresorhus/to-readable-stream)
> Convert a string/Buffer/Uint8Array to a [readable stream](https://nodejs.org/api/stream.html#stream_readable_streams)
## Install
```
$ npm install to-readable-stream
```
## Usage
```js
const toReadableStream = require('to-readable-stream');
toReadableStream('🦄🌈').pipe(process.stdout);
```
## API
### toReadableStream(input)
Returns a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_readable_streams).
#### input
Type: `string` `Buffer` `Uint8Array`
Value to convert to a stream.
## Related
- [into-stream](https://github.com/sindresorhus/into-stream) - More advanced version of this module
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)