Codebase list node-d3-shape / b5924c2 src / descending.js
b5924c2

Tree @b5924c2 (Download .tar.gz)

descending.js @b5924c2raw · history · blame

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