aboutsummaryrefslogtreecommitdiff
path: root/packages/lib/generate-id.ts
blob: bbe201fd7546ba106d1e5abb26ead29ec6289c8c (plain) (blame)
1
2
3
4
5
6
import { customAlphabet } from "nanoid"

export const generateId = () =>
	customAlphabet("123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz")(
		22,
	)