chore: guard for bad input
This commit is contained in:
parent
97e2c764fb
commit
f60505faa9
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
|||
const emojiMap = (genre, artist) => {
|
||||
const DEFAULT = '🎧'
|
||||
if (!genre) return DEFAULT // early return for bad input
|
||||
if (artist === 'David Bowie') return '👨🎤'
|
||||
if (genre.includes('death metal')) return '💀'
|
||||
if (genre.includes('black metal')) return '🧛🏻♂️'
|
||||
|
@ -22,7 +24,7 @@ const emojiMap = (genre, artist) => {
|
|||
if (genre.includes('dance') || genre.includes('electronic')) return '💻'
|
||||
if (genre.includes('alternative') || genre.includes('rock') || genre.includes('shoegaze'))
|
||||
return '🎸'
|
||||
return '🎧'
|
||||
return DEFAULT
|
||||
}
|
||||
|
||||
export default async () => {
|
||||
|
|
Reference in a new issue