You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
4 years ago
|
export function randomSeed() {
|
||
|
return Math.floor(Math.random() * 2 ** 31);
|
||
|
}
|
||
|
export class Random {
|
||
|
constructor(seed) {
|
||
|
this.seed = seed;
|
||
|
}
|
||
|
next() {
|
||
|
if (this.seed) {
|
||
|
return ((2 ** 31 - 1) & (this.seed = Math.imul(48271, this.seed))) / 2 ** 31;
|
||
|
}
|
||
|
else {
|
||
|
return Math.random();
|
||
|
}
|
||
|
}
|
||
|
}
|