(seed: number)
| 9 | }; |
| 10 | |
| 11 | const mulberry32 = (seed: number): (() => number) => { |
| 12 | let a = seed | 0; |
| 13 | return () => { |
| 14 | a |= 0; |
| 15 | a = (a + 0x6d2b79f5) | 0; |
| 16 | let t = Math.imul(a ^ (a >>> 15), 1 | a); |
| 17 | t ^= t + Math.imul(t ^ (t >>> 7), 61 | t); |
| 18 | return ((t ^ (t >>> 14)) >>> 0) / 4294967296; |
| 19 | }; |
| 20 | }; |
| 21 | |
| 22 | const createPointsChunked = async ( |
| 23 | count: number, |
no outgoing calls
no test coverage detected