You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 jaren geleden
123456789101112131415
  1. /**
  2. * Maximum allowed time.
  3. * @constant
  4. * @type {number}
  5. * @default
  6. */
  7. export var maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000;
  8. /**
  9. * Minimum allowed time.
  10. * @constant
  11. * @type {number}
  12. * @default
  13. */
  14. export var minTime = -maxTime;