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