@burglekitt/gmt
Version:
Temporal-based date and time utilities with timezone support and polyfill integration
17 lines (16 loc) • 779 B
TypeScript
/**
* Sort an array of Unix timestamp values in ascending or descending order.
*
* - Filters invalid values before sorting.
* - Supports "asc" (earliest first) or "desc" (latest first).
* - Returns [] if array is empty or has no valid values.
*
* @param unixValues Array of Unix timestamps (e.g. 1699531200)
* @param order "asc" for ascending (earliest first) | "desc" for descending (latest first)
* @returns Sorted array of Unix timestamps
*
* @example sortUnix([1706659200000, 1704067200000, 1700000000000]) // [1700000000000, 1704067200000, 1706659200000]
* @example sortUnix([1704067200, 1700000000], "desc") // [1704067200, 1700000000]
* @example sortUnix([]) // []
*/
export declare function sortUnix(unixValues: number[], order?: "asc" | "desc"): number[];