chore: alphabatize + edit exceptions

This commit is contained in:
Cory Dransfeldt 2023-07-17 19:31:42 -07:00
parent 90086bac22
commit 1e0ed8d6a8
No known key found for this signature in database

View file

@ -14,20 +14,21 @@ const sanitizeAlbum = (album) => {
const titleCase = (string) => { const titleCase = (string) => {
const exceptions = [ const exceptions = [
'of', 'a',
'the',
'and', 'and',
'but', 'but',
'an',
'for', 'for',
'if', 'if',
'nor', 'in',
'or',
'so',
'yet',
'a',
'an',
'is', 'is',
'it', 'it',
'nor',
'of',
'or',
'so',
'the',
'yet',
] ]
if (!string) return '' if (!string) return ''
return string return string