📦 EqualifyEverything / equalify

📄 generateShortId.ts · 9 lines
1
2
3
4
5
6
7
8
9import { customAlphabet } from 'nanoid';

const letters = customAlphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ', 4);
const numbers = customAlphabet('0123456789', 4);

export const generateShortId = (): string => {
    return `${letters()}${numbers()}`;
}