style: restore repo formatting

This commit is contained in:
2026-03-09 18:10:32 -07:00
parent a34a7489db
commit fed60c265d
85 changed files with 641 additions and 143 deletions

View File

@@ -92,11 +92,7 @@ function firstString(value: unknown): string | null {
}
function normalizeGuessitTitlePart(value: string): string {
return value
.replace(/[._]+/g, ' ')
.replace(/-/g, ' ')
.replace(/\s+/g, ' ')
.trim();
return value.replace(/[._]+/g, ' ').replace(/-/g, ' ').replace(/\s+/g, ' ').trim();
}
function readGuessitTitle(value: unknown): string | null {