Creates a readable stream producing cryptographically strong pseudo-random data using `crypto.randomBytes()`
npm install random-bytes-readable-stream> Creates a readable stream producing cryptographically strong pseudo-random data using crypto.randomBytes()
It's like a cross-platform fs.createReadStream('/dev/urandom').
```
$ npm install random-bytes-readable-stream
`js
import randomBytesReadableStream from 'random-bytes-readable-stream';
randomBytesReadableStream({size: 10}).pipe(process.stdout);
`
Returns a stream.Readable.
By default, it produces infinite data.
#### options
Type: Object
##### size
Type: number\Infinity`
Default:
The total size to be produced by the stream in bytes.