mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-13 08:12:32 +10:00
10 lines
399 B
TypeScript
10 lines
399 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const { customAlphabet } = require('fix-esm').require('nanoid');
|
|
|
|
const alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
|
|
export const nanoIdGen = customAlphabet(alphabet, 10);
|
|
|
|
const slugIdAlphabet =
|
|
'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
export const generateSlugId = customAlphabet(slugIdAlphabet, 12);
|