Tumortisch-Dist/resources/app/node_modules/date-fns/esm/constants/index.js
2021-06-15 16:00:08 +02:00

15 lines
251 B
JavaScript

/**
* Maximum allowed time.
* @constant
* @type {number}
* @default
*/
export var maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000;
/**
* Minimum allowed time.
* @constant
* @type {number}
* @default
*/
export var minTime = -maxTime;