tor-browser

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

bug680759.js (224B)


      1 TryToCatch();
      2 TryToCatch();
      3 function Thrower( v ) {
      4  throw "Caught";
      5 }
      6 function Eval( v ) { 
      7 SECTION : Thrower(TryToCatch, v, ': 3')
      8 }
      9 function TryToCatch( value, expect ) {
     10  try {
     11    Eval( value )
     12  } catch (e) {  }
     13 }