VideoChain-API / src /utils /misc /generateSeed.mts
jbilcke-hf's picture
jbilcke-hf HF staff
small clean-up
955ce73
raw
history blame
88 Bytes
export function generateSeed() {
return Math.floor(Math.random() * Math.pow(2, 31));
}