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