mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-13 14:36:09 +00: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, "_");
|
|
}
|