tor-browser

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

non-extensible-array.js (94B)


      1 function foo(x) {
      2  Object.seal(x);
      3  x[3] = 4;
      4  assertEq("" + x, "1,2,3");
      5 }
      6 foo([1,2,3]);