UNPKG

random-seed

Version:

GRC's UHE PRNG in node (Ultra-High Entropy Pseudo-Random Number Generator by Gibson Research Corporation)

5 lines (4 loc) 163 B
var lib = require('random-seed'); // create a generator var rand1 = lib.create(); var rand2 = lib.create('Hello World Seed'); console.log(rand1(100), rand2(100));