tor-browser

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

input.js (318B)


      1 export default function root() {
      2  let one = 1;
      3 
      4  class Thing {
      5    one() {
      6      console.log("pause here");
      7    }
      8  }
      9 
     10  class Another {
     11    method() {
     12      let two = 2;
     13 
     14      const three = 3;
     15 
     16      console.log("pause here", Another, one, Thing, root);
     17    }
     18  }
     19 
     20  new Another().method();
     21  new Thing().one();
     22 }