VideoChain-API / src /scheduler /sortVideosByYoungestFirst.mts
jbilcke-hf's picture
jbilcke-hf HF staff
small clean-up
955ce73
raw
history blame
260 Bytes
import { Video } from "../types.mjs"
// used by the API, to return latest videos at the top
export function sortVideosByYoungestFirst(videos: Video[]) {
videos.sort((a: Video, b: Video) => Date.parse(b.createdAt) - Date.parse(a.createdAt))
return videos
}