mirror of
https://github.com/outline/outline.git
synced 2025-12-30 15:30:12 -06:00
* 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);
|