tor-browser

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

input.js (259B)


      1 export default function root() {
      2 
      3  function decl(p1) {
      4    const inner = function inner(p2) {
      5      const arrow = (p3) => {
      6        console.log("pause here", p3, arrow, p2, inner, p1, decl, root);
      7      };
      8      arrow();
      9    };
     10    inner();
     11  }
     12 
     13  decl();
     14 }