fix: map + subtext
This commit is contained in:
parent
24d9a85457
commit
5399324bba
1 changed files with 7 additions and 3 deletions
|
@ -37,7 +37,11 @@ module.exports = {
|
||||||
* @param {Array} array - an array of media objects.
|
* @param {Array} array - an array of media objects.
|
||||||
* @returns {Array} - a new array sorted by the number of plays in descending order.
|
* @returns {Array} - a new array sorted by the number of plays in descending order.
|
||||||
*/
|
*/
|
||||||
sortByPlays: (array) => Object.values(array).sort((a, b) => b.plays - a.plays).map((media, index) => {
|
sortByPlays: (array) =>
|
||||||
return media.rank = index + 1
|
Object.values(array)
|
||||||
}),
|
.sort((a, b) => b.plays - a.plays)
|
||||||
|
.map((media, index) => {
|
||||||
|
media.rank = index + 1
|
||||||
|
return media
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue