UNPKG

@antv/layout

Version:
13 lines (10 loc) 294 B
// https://en.wikipedia.org/wiki/Linear_congruential_generator#Parameters_in_common_use const a = 1664525; const c = 1013904223; const m = 4294967296; // 2^32 function lcg() { let s = 1; return () => (s = (a * s + c) % m) / m; } export { lcg as default }; //# sourceMappingURL=lcg.js.map