mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
|
import { customAlphabet } from 'nanoid';
|
||
|
const nanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', 16);
|
||
|
|
||
|
export function generateNanoId() {
|
||
|
return nanoid();
|
||
|
}
|