tor-browser

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

bug799185-4.js (194B)


      1 function foo(aObject)
      2 {
      3    try { }
      4    catch (ex) {
      5        if (ex.name != "TypeError")
      6            throw ex;
      7    }
      8    try { Object.getPrototypeOf(aObject); }
      9    catch (ex) { }
     10 }
     11 
     12 foo(true);