import { Comparator } from 'types';

export const numberComparator: Comparator<number> = (a, b) => a - b;
