tor-browser

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

mapped-freeze.js (131B)


      1 function f(a) {
      2  Object.freeze(arguments);
      3  a = 1;
      4  return arguments[0];
      5 }
      6 
      7 assertEq(f(10), 10);
      8 assertEq(f("hello"), "hello");