mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-31 01:36:23 +02:00
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import { customAlphabet } from "nanoid/async";
|
|
|
|
export const nanoid = customAlphabet(
|
|
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
|
|
12,
|
|
);
|
|
|
|
export const randomid = customAlphabet(
|
|
"0123456789abcdefghijklmnopqrstuvwxyz",
|
|
12,
|
|
);
|