Files
GibSend/apps/web/src/server/nanoid.ts
2024-08-26 20:46:38 +10:00

12 lines
250 B
TypeScript

import { customAlphabet } from "nanoid";
export const smallNanoid = customAlphabet(
"1234567890abcdefghijklmnopqrstuvwxyz",
10
);
export const nanoid = customAlphabet(
"1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
21
);