tor-browser

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

simple-module.js (111B)


      1 import foo from "foo";
      2 
      3 console.log(foo);
      4 
      5 var one = 1;
      6 let two = 2;
      7 const three = 3;
      8 
      9 function fn() {}
     10 
     11 this;