File size: 194 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 |
export const sortVideosByPopularity = (a, b) => {
if (a.popularity > b.popularity) {
return -1;
}
if (a.popularity < b.popularity) {
return 1;
}
return 0;
}
|