tor-browser

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

bug1678442.js (220B)


      1 var fun = function() {};
      2 var newTarget = (function(){}).bind();
      3 Object.defineProperty(newTarget, "prototype", {get() { relazifyFunctions() }});
      4 for (var i = 0; i < 10; i++) {
      5    Reflect.construct(fun, [], newTarget);
      6 }