Skip to content

sortTimes

sortTimes(times: string[], order?: "asc" | "desc"): string[]
import { sortTimes } from "@northguild/gmt/plain/calculate";

Sort an array of PlainTime values in ascending or descending order.

  • Returns empty array if no valid times.
  • Validation is performed on each item in the array.
Parameter Type Description
times string[] Array of ISO PlainTime strings (e.g. “14:30:00”)
order "asc" | "desc" “asc” for ascending (earliest first) | “desc” for descending (latest first)

Sorted array of time strings

sortTimes(["14:30:00", "09:00:00", "20:45:00"]) // ["09:00:00", "14:30:00", "20:45:00"]
sortTimes([]) // []

plain/calculate/sortTimes.ts