Codebase list node-d3-shape / upstream/1.3.7 src / descending.js
upstream/1.3.7

Tree @upstream/1.3.7 (Download .tar.gz)

descending.js @upstream/1.3.7raw · history · blame

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