mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-26 17:02:27 -04:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { customAlphabet } from 'nanoid';
|
|
|
|
// uppercase, lowercase letters and numbers
|
|
export const customNanoid = customAlphabet(
|
|
'1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
|
|
64
|
|
);
|