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