UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

8 lines (6 loc) 202 B
declare enum SortDirection { ASC = "ASC", DESC = "DESC" } declare function sortByDate<T>(a: T, b: T, key: keyof T, direction?: SortDirection): 0 | 1 | -1; export { SortDirection, sortByDate };