@rojo2/linear-congruential-generator
v1.0.2
Published
![Travis CI](https://travis-ci.org/rojo2/linear-congruential-generator.svg?branch=master)
Downloads
9
Readme
Linear Congruential Generator
import linearCongruentialGenerator, { MODULUS } from "@rojo2/linear-congruential-generator";
function createRandomFunction(initialValue = 0) {
let value = initialValue;
return function() {
value = linearCongruentialGenerator(value);
return value / MODULUS;
}
}
Made with :heart: by ROJO 2 (http://rojo2.com)