ai-tube / src /lib /utils /generateSeed.ts
jbilcke's picture
working to improve the clap format
f42b4a1
raw
history blame
No virus
88 Bytes
export function generateSeed() {
return Math.floor(Math.random() * Math.pow(2, 31));
}