Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @entropy-source/pseudo-random

npm

npm install @entropy-source/pseudo-random --save

jspm

jspm install npm:@entropy-source/pseudo-random

Usage

:warning: The code requires regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

await import( 'regenerator-runtime/runtime.js' );
// or
import 'regenerator-runtime/runtime.js' ;

Then, import the library where needed

const pseudorandom = await import( '@entropy-source/pseudo-random' ) ;
// or
import * as pseudorandom from '@entropy-source/pseudo-random' ;

Examples

More examples in the test files.