mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 18:26:34 +02:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import { customAlphabet } from "nanoid";
|
|
|
|
export const nanoid = customAlphabet(
|
|
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
|
|
12,
|
|
);
|
|
|
|
export const randomid = customAlphabet(
|
|
"0123456789abcdefghijklmnopqrstuvwxyz",
|
|
12,
|
|
);
|
|
|
|
export const generateOtp = customAlphabet("0123456789", 6);
|