mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-07 12:35:00 +00:00
5 lines
No EOL
218 B
TypeScript
5 lines
No EOL
218 B
TypeScript
export function randomSeed() {
|
|
const high32 = Math.floor(Math.random() * Math.pow(2, 32));
|
|
const low32 = Math.floor(Math.random() * Math.pow(2, 32));
|
|
return ((BigInt(high32) << 32n) | BigInt(low32)).toString();
|
|
} |