1 2 3 4 5 6 7 8
/** * Generates a random seed. * * @internal */ export function randomSeed(): number { return Math.ceil(Math.random() * Number.MAX_SAFE_INTEGER); }