6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
|
|
import { customAlphabet } from 'nanoid';
|
||
|
|
|
||
|
|
export const alphaid = customAlphabet('0123456789abcdefghijklmnopqrstuvwxyz', 10);
|
||
|
|
|
||
|
|
export { nanoid } from 'nanoid';
|