mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-05 16:57:41 +01:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
export function normalizeTitle(title: string): string {
|
|
return title
|
|
.trim()
|
|
.toLowerCase()
|
|
.replace(/['":]/g, "")
|
|
.replace(/[^a-zA-Z0-9]+/g, "_");
|
|
}
|