mirror of
https://github.com/docmost/docmost.git
synced 2026-05-14 04:24:04 +08:00
a689cca7a0
* feat: labels (WIP) * full implementation
4 lines
118 B
TypeScript
4 lines
118 B
TypeScript
export function normalizeLabelName(name: string): string {
|
|
return name.trim().replace(/\s+/g, '-').toLowerCase();
|
|
}
|