VideoChain-API / src /scheduler /sortPendingVideosByLeastCompletedFirst.mts
jbilcke-hf's picture
jbilcke-hf HF staff
small clean-up
955ce73
raw
history blame
215 Bytes
import { Video } from "../types.mjs"
export function sortPendingVideosByLeastCompletedFirst(videos: Video[]): Video[] {
videos.sort((a: Video, b: Video) => a.progressPercent - b.progressPercent)
return videos
}