tor-browser

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

input.js (188B)


      1 const mod = "module scoped";
      2 
      3 export default function forOf() {
      4  for (const x of [1]) {
      5    doThing(x);
      6  }
      7 
      8  function doThing(arg) {
      9    // Avoid optimize out
     10    window.console;
     11  }
     12 }