freeCodeCamp/api/src/utils/ids.ts
Oliver Eyton-Williams aacfb281fb
feat(api): use jwt_access_token (in development) (#53997)
Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2024-03-20 13:47:12 +02:00

8 lines
206 B
TypeScript

import { customAlphabet } from 'nanoid';
// uppercase, lowercase letters and numbers
export const customNanoid = customAlphabet(
'1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
64
);