dateConstants.js 525 B

123456789101112131415161718
  1. // Copyright (C) 2009 the Sputnik authors. All rights reserved.
  2. // This code is governed by the BSD license found in the LICENSE file.
  3. /*---
  4. description: |
  5. Collection of date-centric values
  6. ---*/
  7. var date_1899_end = -2208988800001;
  8. var date_1900_start = -2208988800000;
  9. var date_1969_end = -1;
  10. var date_1970_start = 0;
  11. var date_1999_end = 946684799999;
  12. var date_2000_start = 946684800000;
  13. var date_2099_end = 4102444799999;
  14. var date_2100_start = 4102444800000;
  15. var start_of_time = -8.64e15;
  16. var end_of_time = 8.64e15;