tor-browser

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

input.js (219B)


      1 export default function root() {
      2  class Another {
      3    bound = () => {
      4      return this;
      5    }
      6 
      7    method() {
      8      let two = 2;
      9 
     10      console.log("pause here", Another, root);
     11    }
     12  }
     13 
     14  new Another().method();
     15 }