mirror of
https://github.com/docmost/docmost.git
synced 2025-11-11 17:22:05 +10:00
8 lines
311 B
TypeScript
8 lines
311 B
TypeScript
import { customAlphabet } from 'nanoid';
|
|
|
|
const alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
|
|
export const nanoIdGen = customAlphabet(alphabet, 10);
|
|
|
|
const slugIdAlphabet =
|
|
'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
export const generateSlugId = customAlphabet(slugIdAlphabet, 10); |