tor-browser

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

input.js (196B)


      1 var moduleScoped = 1;
      2 let alsoModuleScoped = 2;
      3 
      4 function thirdModuleScoped() {}
      5 
      6 exports.default = function() {
      7  console.log("pause here", moduleScoped, alsoModuleScoped, thirdModuleScoped);
      8 };