mirror of
https://github.com/docmost/docmost.git
synced 2026-07-26 18:54:43 +10: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();
|
|
}
|