chore: expand title case exceptions
This commit is contained in:
parent
ecaf56ea43
commit
90086bac22
1 changed files with 16 additions and 1 deletions
|
@ -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()
|
||||
|
|
Reference in a new issue