Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
export const sortVideosByPopularity = (a, b) => {
if (a.popularity > b.popularity) {
return -1;
}
if (a.popularity < b.popularity) {
return 1;
}
return 0;
}