Convert function to arrow-function

This commit is contained in:
Deluan 2020-06-22 19:55:04 -04:00
parent e1968b0953
commit 9b75b729ba
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const setTrack = (data) => ({
data,
})
let filterSongs = function (data, ids) {
const filterSongs = (data, ids) => {
if (!ids) {
return data
}