tor-browser

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

bug1754968.js (136B)


      1 const root = {a:0, b:0};
      2 const subclass = Object.create(root);
      3 const instance = Object.create(subclass);
      4 Object.assign(subclass, root);