ai-clip-factory / src /lib /getRandomPartyId.ts
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
9a42933
raw
history blame
No virus
319 Bytes
import { customAlphabet } from "nanoid"
const nanoid = customAlphabet([
'1234567890',
'abcdefghijklmnopqrstuvwxyz',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
].join(''), 10)
export function getRandomPartyId() {
const num = Math.round(Math.random() * 99)
const newId = `${nanoid(2)}${num}${nanoid(2)}`
return newId
}