chore: alphabatize + edit exceptions
This commit is contained in:
parent
90086bac22
commit
1e0ed8d6a8
1 changed files with 9 additions and 8 deletions
|
@ -14,20 +14,21 @@ const sanitizeAlbum = (album) => {
|
|||
|
||||
const titleCase = (string) => {
|
||||
const exceptions = [
|
||||
'of',
|
||||
'the',
|
||||
'a',
|
||||
'and',
|
||||
'but',
|
||||
'an',
|
||||
'for',
|
||||
'if',
|
||||
'nor',
|
||||
'or',
|
||||
'so',
|
||||
'yet',
|
||||
'a',
|
||||
'an',
|
||||
'in',
|
||||
'is',
|
||||
'it',
|
||||
'nor',
|
||||
'of',
|
||||
'or',
|
||||
'so',
|
||||
'the',
|
||||
'yet',
|
||||
]
|
||||
if (!string) return ''
|
||||
return string
|
||||
|
|
Reference in a new issue