mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-19 21:09:51 +08: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
|
|
);
|