tor-browser

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

input.js (225B)


      1 export default function root() {
      2  let val = 1;
      3 
      4  switch (true) {
      5    case true:
      6      let val = 2;
      7      console.log("pause here", root);
      8    default: {
      9      let val = 3;
     10      console.log("pause here", root);
     11    }
     12  }
     13 }