tor-browser

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

nonwritable-length-grow-capacity.js (95B)


      1 var arr = Object.defineProperty([], "length", { writable: false, value: 12 });
      2 arr[11] = true;