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

Tree @fresh-releases/upstream (Download .tar.gz)

descending.js @fresh-releases/upstreamraw · history · blame

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