mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-17 07:00:57 -05: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
|
|
);
|