feat: artist genres

This commit is contained in:
Cory Dransfeldt 2023-07-21 14:18:00 -07:00
parent af96a35a38
commit fc344837cf
No known key found for this signature in database
5 changed files with 932 additions and 4 deletions

3
src/utils/arrays.js Normal file
View file

@ -0,0 +1,3 @@
module.exports = {
getKeyByValue: (object, value) => Object.keys(object).find((key) => object[key].includes(value)),
}