mirror of
https://github.com/certd/certd.git
synced 2026-04-12 11:20:57 +08:00
5 lines
215 B
TypeScript
5 lines
215 B
TypeScript
import { customAlphabet } from "nanoid";
|
|
|
|
export const randomNumber = customAlphabet("1234567890", 4);
|
|
export const simpleNanoId = customAlphabet("1234567890abcdefghijklmopqrstuvwxyzABCDEFGHIJKLMOPQRSTUVWXYZ", 12);
|