tor-browser

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

bug1686207.js (122B)


      1 function f(x, y) {
      2    x >> (y >>> 0)
      3 }
      4 
      5 with ({}) {}
      6 
      7 f(-1, -1)
      8 f(1.5, 0)
      9 for (var i = 0; i < 100; i++) {
     10    f(0, 0);
     11 }