tor-browser

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

1883837.js (186B)


      1 let threw = false;
      2 try {
      3    ({
      4        a: arguments.length
      5    } = 0);
      6 } catch (error) {
      7    assertEq(error instanceof ReferenceError, true);
      8    threw = true;
      9 }
     10 assertEq(threw, true);