UNPKG

sorting-lib

Version:

A library that makes sorting easier by introducing `Comparator`

4 lines (3 loc) 61 B
export interface Comparator<T> { (a: T, b: T): number; }