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 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
|
||||||
|
|
Reference in a new issue