1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-06 17:07:41 +01:00
smov/src/utils/normalizeTitle.ts

8 lines
168 B
TypeScript
Raw Normal View History

2023-02-21 21:17:36 +01:00
export function normalizeTitle(title: string): string {
return title
.trim()
.toLowerCase()
.replace(/['":]/g, "")
.replace(/[^a-zA-Z0-9]+/g, "_");
}