tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

range-analysis-bug1124448.js (159B)


      1 function f(y) {
      2    var x1 = Math.max(-2147483649 >> 0, y >>> 0);
      3    var x2 = x1 | 0;
      4    return (x2 >= 0) ? 1 : 0;
      5 }
      6 assertEq(f(0), 1);
      7 assertEq(f(-1), 0);