mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
772eb2f1d4
* fix: randomstring dep does not work in browser with rolldown-vite * fix: Last usage of randomstring, docs * feedback
6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
import { randomString } from "@shared/random";
|
|
|
|
const UrlIdLength = 10;
|
|
|
|
export const generateUrlId = () => randomString(UrlIdLength);
|