This commit is contained in:
KilianSorel 2022-08-30 06:49:31 +00:00 committed by GitHub
parent 53b35c1683
commit a0d6b52971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ function* pseudoRandom(seed) {
let value = seed;
while(true) {
value = value * 16807 % 2147483647
value = value * 16807 % 2147483647;
yield value;
}