tor-browser

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

bug1646302.js (127B)


      1 function f(x) {
      2  function fnc() {}
      3  fnc.prototype = 3;
      4  new fnc;
      5  if (x < 50) {
      6    new new.target(x + 1);
      7  }
      8 }
      9 new f(0);