tor-browser

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

function-expression.js (97B)


      1 export {};
      2 
      3 let fn = function(p1) {};
      4 
      5 let fn2 = function withName(p2) {
      6  console.log(this);
      7 };