mirror of
https://github.com/certd/certd.git
synced 2026-04-05 07:20:56 +08:00
5 lines
190 B
TypeScript
5 lines
190 B
TypeScript
import { customAlphabet } from 'nanoid';
|
|
|
|
export const randomNumber = customAlphabet('1234567890', 4);
|
|
export const simpleNanoId = customAlphabet('1234567890abcdefghijklmopqrstuvwxyz', 12);
|