Files
codeql/javascript/ql/src/Expressions/examples/ImplicitOperandConversion2Good.js
2018-08-02 17:53:23 +01:00

7 lines
103 B
JavaScript

function cmp(x, y) {
if (x > y)
return 1;
if (x < y)
return -1;
return 0;
}