UNPKG

114 BJavaScriptView Raw
1module.exports = function(op, a, b) {
2 var res = op(a, b);
3
4 return a < 0 && b % 2? res <= 0: 0 <= res;
5};
6