mirror of
https://github.com/outline/outline.git
synced 2026-01-06 02:59:54 -06:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
import randomstring from "randomstring";
|
|
|
|
const UrlIdLength = 10;
|
|
|
|
export const generateUrlId = () => randomstring.generate(UrlIdLength);
|