uid.js 341 B

123456789101112
  1. import { customAlphabet } from 'nanoid';
  2. const alpha = '23456789ABCDEFGHJKMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz';
  3. // Custom uid generator
  4. export const longUid = customAlphabet(alpha, 40);
  5. // Custom uid generator
  6. export const uid = customAlphabet(alpha, 15);
  7. // Custom small uid generator
  8. export const smallUid = customAlphabet(alpha, 5);