tor-browser

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

bug1057582.js (226B)


      1 Object.defineProperty(Object.prototype, "0", {configurable: true});
      2 delete Object.prototype[0];
      3 
      4 function makeArray() {
      5    var arr = [];
      6    for (var i = 0; i < 10; i++)
      7        arr.push(true);
      8    return arr;
      9 }
     10 makeArray();