VideoChain-API / src /utils /sortVideosByYoungestFirst.mts
jbilcke-hf's picture
jbilcke-hf HF staff
add "movie director assistant" LLM step
e4e0e54
raw
history blame
260 Bytes
import { Video } from "../types.mts"
// 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
}