Codebase list node-d3-shape / run/bfd10b96-6146-4502-95ac-8c0d08ae598e/main src / descending.js
run/bfd10b96-6146-4502-95ac-8c0d08ae598e/main

Tree @run/bfd10b96-6146-4502-95ac-8c0d08ae598e/main (Download .tar.gz)

descending.js @run/bfd10b96-6146-4502-95ac-8c0d08ae598e/mainraw · history · blame

1
2
3
export default function(a, b) {
  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
}