chore: expand title case exceptions

This commit is contained in:
Cory Dransfeldt 2023-07-17 19:23:51 -07:00
parent ecaf56ea43
commit 90086bac22
No known key found for this signature in database

View file

@ -13,7 +13,22 @@ const sanitizeAlbum = (album) => {
}
const titleCase = (string) => {
const exceptions = ['of', 'the', 'and']
const exceptions = [
'of',
'the',
'and',
'but',
'for',
'if',
'nor',
'or',
'so',
'yet',
'a',
'an',
'is',
'it',
]
if (!string) return ''
return string
.toLowerCase()