tor-browser

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

function-declaration.js (117B)


      1 export {};
      2 
      3 function outer(p1) {}
      4 
      5 {
      6  function middle(p2) {
      7    function inner(p3) {}
      8 
      9    console.log(this);
     10  }
     11 }