in src/utils/stats.js [5:10]
export function ascending(a, b) { if (a < b) return -1; if (a > b) return 1; if (a >= b) return 0; return NaN; }