tor-browser

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

bug1003161.js (121B)


      1 function foo(a, b) {
      2    function bar() {
      3 return b;
      4    }
      5    return arguments[0] + arguments[1] + bar();
      6 }
      7 foo(1, 2);