import { type Comparator } from '@/types';

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