tor-browser

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

another-original.js (366B)


      1 // This content of this file is added before that of original-with-no-update.js in the generated file
      2 // bundle-with-another-original.js, its main goal is to just cause the content of the generated file to change.
      3 function funcA() {
      4  funcB();
      5  funcC();
      6 }
      7 
      8 function funcB() {
      9  console.log("Hello!");
     10 }
     11 
     12 function funcC() {
     13  console.log("You made it!");
     14 }
     15 funcA();