Package Exports
- alea
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (alea) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Alea
A simple copy-and-paste implementation of Johannes Baagøe's Alea PRNG
Mostly packaged so I can easily include it in my projeccts. Nothing more
Installation
npm install aleaUsage
var Alea = require('alea')
var prng = new Alea() // add an optional seed param
var nextRandnum = prng() // just call the return value of AleaAcknowledgements
Everything in this module was made by Johannes Baagøe. I just wanted this in npm. Read more on his homepage.