tor-browser

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

bug1823212.js (217B)


      1 with (newGlobal(this)) {
      2  eval(`
      3        function bar() {}
      4        function foo(a) {
      5          try {
      6            foo();
      7          } catch {
      8            bar(...arguments);
      9          }
     10        }
     11        foo();
     12  `);
     13 }