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 8 9 | 4x 4x 27x 27x 4x | export function random(seed: string, min: number, max: number) {
let hash = 2166136261; // FNV offset basis
for (let i = 0; i < seed.length; i++) {
hash ^= seed.charCodeAt(i);
hash = (hash * 16777619) >>> 0; // FNV prime, keep uint32
}
return min + (hash % (max - min + 1));
}
|