UNPKG

@zodash/order-by

Version:

Multiple Field Sorter, support ASC + DESC

4 lines (3 loc) 156 B
export declare type Factor = [string, 'ASC' | 'DESC']; export declare function orderBy<T>(dataSource: T[], factors: Factor[]): T[]; export default orderBy;