tor-browser

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

bug824347.js (164B)


      1 function g() { }
      2 function f(b) {
      3    var test;
      4    if (b) {
      5        g.apply(null, arguments);
      6        var test = 1;
      7    } else {
      8        f(false);
      9    }
     10 }
     11 f(true);