site/node_modules/d3-shape/src/descending.js

4 lines
86 B
JavaScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
export default function(a, b) {
return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
}