12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
import { customAlphabet } from "nanoid";
|
|
|
|
export const smallNanoid = customAlphabet(
|
|
"1234567890abcdefghijklmnopqrstuvwxyz",
|
|
10
|
|
);
|
|
|
|
export const nanoid = customAlphabet(
|
|
"1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
|
21
|
|
);
|