UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

10 lines (7 loc) 264 B
import { SortDirection } from './sortByKey.js'; type SortOptions = { locale?: string; shouldIgnoreZero?: boolean; }; declare function sortData(a: unknown, b: unknown, direction?: SortDirection | null, options?: SortOptions): number; export { sortData };