tor-browser

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

bug1113980.js (222B)


      1 var p = new Proxy({}, {
      2    getOwnPropertyDescriptor: function() {
      3        return {value: 1, configurable: true, writable: true};
      4    },
      5    defineProperty: function() {
      6    }
      7 }, null);
      8 
      9 var o = Object.create(p);
     10 o.a = 1;