Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 | 1x 47x 314x 314x | export const resetMathRandom = (seed = 123456789) => {
Math.random = () => {
seed = (seed * 48271) % 2147483647;
return (seed - 1) / 2147483646;
};
};
|