mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-27 15:53:49 +00:00
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
import { customAlphabet } from 'nanoid'
|
|
|
|
const nanoid = customAlphabet('abcdefghijklmnopqrstuvwxyz')
|
|
export const newId = () => nanoid(15)
|