time-to-botec/js/node_modules/@stdlib/random/streams/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

16 KiB

Pseudorandom Number Generator Streams

Standard library pseudorandom number generator (PRNG) streams.

Usage

var ns = require( '@stdlib/random/streams' );

ns

Standard library pseudorandom number generator (PRNG) streams.

var streams = ns;
// returns {...}

The namespace contains the following functions for creating readable pseudorandom number generator streams:

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/random/streams' );

console.log( objectKeys( ns ) );