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
/
ascending.js
9 lines
(6 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
d3_ascending; d3$ascending = d3_ascending;
function
d3_ascending
(
a, b
) {
return
a < b ? -
1
: a > b ?
1
: a >= b ?
0
:
NaN
; }
export
{ d3_ascending };