mirror of
https://github.com/github/codeql.git
synced 2026-01-28 13:53:10 +01: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;
|
|
} |