mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01:00
5 lines
218 B
TypeScript
5 lines
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();
|
|
} |