sortTimes
Signature
Section titled “Signature”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.
Parameters
Section titled “Parameters”| 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) |
Returns
Section titled “Returns”Sorted array of time strings
Examples
Section titled “Examples”sortTimes(["14:30:00", "09:00:00", "20:45:00"]) // ["09:00:00", "14:30:00", "20:45:00"]sortTimes([]) // []