Skip to content

Latest commit

 

History

History
142 lines (86 loc) · 7.91 KB

README.md

File metadata and controls

142 lines (86 loc) · 7.91 KB

Array

Pseudorandom number generator (PRNG) array creation functions.

Usage

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

ns

Namespace containing array creation pseudorandom number generator (PRNG) functions.

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

The namespace contains the following:

Examples

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

console.log( objectKeys( ns ) );