Files
RoboCommander/node_modules/d3-shape/src/descending.js
2026-04-05 16:14:49 -04:00

4 lines
86 B
JavaScript

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