UNPKG
aureooms-js-integer
Version:
latest (1.0.0)
1.0.0
0.3.2
0.3.1
0.3.0
integer code bricks for JavaScript
aureooms.github.io/js-integer
aureooms/js-integer
aureooms-js-integer
/
src
/
1-new
/
compare
/
_cmp.js
11 lines
(7 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ _CMP }
from
'.'
;
export
function
_cmp
(
a , ai , aj , b , bi , bj
) {
if
( aj - ai < bj - bi )
return
-
_CMP
( b , bi , bj , a , ai , aj ) ;
else
return
_CMP
( a , ai , aj , b , bi , bj ) ; }