MCPcopy Create free account
hub / github.com/block/buzz / mulberry32

Function mulberry32

desktop/src/testing/e2eBridge.ts:4191–4200  ·  view source on GitHub ↗
(seed: number)

Source from the content-addressed store, hash-verified

4189]);
4190
4191function mulberry32(seed: number) {
4192 let state = seed;
4193 return () => {
4194 state |= 0;
4195 state = (state + 0x6d2b79f5) | 0;
4196 let t = Math.imul(state ^ (state >>> 15), 1 | state);
4197 t = (t + Math.imul(t ^ (t >>> 7), 61 | t)) ^ t;
4198 return ((t ^ (t >>> 14)) >>> 0) / 4294967296;
4199 };
4200}
4201
4202let mockProjectEventStore: RelayEvent[] | null = null;
4203

Callers 1

buildMockProjectEventsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected