tor-browser

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

bug717251.js (379B)


      1 // Binary: cache/js-dbg-64-4de07a341aab-linux
      2 // Flags: -m -n -a
      3 //
      4 load(libdir + "immutable-prototype.js");
      5 
      6 if (globalPrototypeChainIsMutable())
      7  this.__proto__ = [];
      8 
      9 var msPerDay =   86400000;
     10 for ( var time = 0, year = 1969; year >= 0; year-- ) {
     11  time -= TimeInYear(year);
     12 }
     13 function DaysInYear( y ) {}
     14 function TimeInYear( y ) {
     15  return ( DaysInYear(y) * msPerDay );
     16 }