Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

chancejs

abe780.0.8

Various pseudo-random implementations packaged with helpful random utilities

random, neat, pseudo-random, mersenne-twister

readme

Build Status

Various pseudo-random implementations packaged with helpful random utilities.

Installation And Usage

Node

Install chancejs with:

npm install chancejs

And then use it like that:

var chancejs = require('chancejs');

var seed = new chancejs.LaggedFibonnacci(123);
var random = new chancejs.Random(seed);

random.get();

Browser

Link the javascript:

<script src='chancejs.js' type='text/javascript'></script>

And then use it like that:

var seed = new chancejs.LaggedFibonnacci(123);
var random = new chancejs.Random(seed);

random.get()