4 lines
138 B
TypeScript

import { customAlphabet } from 'nanoid'
export const nanoid: (size?: number) => string = customAlphabet('abcdefghijklmnopqrstuvwxyz', 5)