UNPKG

chancejs

Version:

Various pseudo-random implementations packaged with helpful random utilities

35 lines (18 loc) 652 B
![Build Status](https://travis-ci.org/abe33/chancejs.png) 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()