UNPKG
d3-jsnext
Version:
latest (3.5.5)
3.5.5
d3, but futuristic
github.com/rollup/d3-jsnext
rollup/d3-jsnext
d3-jsnext
/
src
/
arrays
/
descending.js
7 lines
(5 loc)
•
134 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
d3
$descending
; d3
$descending
=
function
(
a, b
)
{
return
b < a ? -
1
: b > a ?
1
: b >= a ?
0
: NaN; }; export { d3
$descending
};