tor-browser

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

bug837312.js (164B)


      1 function bind(f) {
      2      return f.call.apply(f.bind, arguments);
      3 }
      4 function g(a, b) {}
      5 for(var i=0; i<20; ++i) {
      6      g.call(undefined, {}, bind(function(){}));
      7 }