6 lines
216 B
TypeScript
6 lines
216 B
TypeScript
import { customAlphabet, nanoid } from 'nanoid';
|
|
const number = '0123456789';
|
|
const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
|
|
export const generateId = customAlphabet(number + alphabet, 6);
|