tor-browser

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

bug1196648.js (294B)


      1 h = function(m, foreign, n) {
      2    "use asm";
      3    var ff = foreign.ff;
      4    function f(x) {
      5        x = +x;
      6        ff();
      7    }
      8    return f;
      9 }(0, {
     10    ff: function() {
     11        return {
     12            e: String.prototype.substring
     13        };
     14    }
     15 }, 0);
     16 for (var k = 0; k < 999; k++) {
     17    h();
     18 }