tor-browser

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

bug652646.js (118B)


      1 function foo() {
      2  try {
      3    return 0;
      4  } catch (e) {
      5    try {
      6      return 1;
      7    } catch (e) {
      8    }
      9  }
     10 }
     11 foo();