mirror of
https://github.com/github/codeql.git
synced 2026-07-16 00:38:15 +02:00
7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
function cmp(x, y) {
|
|
if (x > y)
|
|
return 1;
|
|
if (x < y)
|
|
return -1;
|
|
return 0;
|
|
} |