@jsonjoy.com/util
Version:
Various helper utilities
11 lines • 371 B
TypeScript
/**
* Insertion sort, should be faster than built-int sort for small arrays.
*
* @todo Move this to `thingies` package.
*
* @param arr Array to sort.
* @param comparator Comparator function.
* @returns Returns the same array instance.
*/
export declare const sort: <T>(arr: T[], comparator: (a: T, b: T) => number) => T[];
//# sourceMappingURL=insertion2.d.ts.map