tor-browser

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

doc-step-in-uninitialized.html (113B)


      1 <script>
      2 function main() {
      3  debugger;
      4  foo();
      5 }
      6 function foo() {
      7  let x;
      8  let y = 3;
      9  return 0;
     10 }
     11 </script>