tor-browser

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

bug1688136.js (177B)


      1 function f(a, c) {
      2    if (c) {
      3        a++;
      4    } else {
      5        a--;
      6    }
      7    return (a + a) | 0;
      8 }
      9 
     10 with ({}) {}
     11 for (var i = 0; i < 100; i++) {
     12    f(2147483647, i % 2);
     13 }