%PDF- %PDF-
Direktori : /var/www/html/node_modules/date-fns/constants/ |
Current File : /var/www/html/node_modules/date-fns/constants/index.js |
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.secondsInMinute = exports.secondsInHour = exports.quartersInYear = exports.monthsInYear = exports.monthsInQuarter = exports.minutesInHour = exports.minTime = exports.millisecondsInSecond = exports.millisecondsInHour = exports.millisecondsInMinute = exports.maxTime = exports.daysInWeek = void 0; /** * Days in 1 week. * * @name daysInWeek * @constant * @type {number} * @default */ var daysInWeek = 7; /** * Maximum allowed time. * * @name maxTime * @constant * @type {number} * @default */ exports.daysInWeek = daysInWeek; var maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000; /** * Milliseconds in 1 minute * * @name millisecondsInMinute * @constant * @type {number} * @default */ exports.maxTime = maxTime; var millisecondsInMinute = 60000; /** * Milliseconds in 1 hour * * @name millisecondsInHour * @constant * @type {number} * @default */ exports.millisecondsInMinute = millisecondsInMinute; var millisecondsInHour = 3600000; /** * Milliseconds in 1 second * * @name millisecondsInSecond * @constant * @type {number} * @default */ exports.millisecondsInHour = millisecondsInHour; var millisecondsInSecond = 1000; /** * Minimum allowed time. * * @name minTime * @constant * @type {number} * @default */ exports.millisecondsInSecond = millisecondsInSecond; var minTime = -maxTime; /** * Minutes in 1 hour * * @name minutesInHour * @constant * @type {number} * @default */ exports.minTime = minTime; var minutesInHour = 60; /** * Months in 1 quarter * * @name monthsInQuarter * @constant * @type {number} * @default */ exports.minutesInHour = minutesInHour; var monthsInQuarter = 3; /** * Months in 1 year * * @name monthsInYear * @constant * @type {number} * @default */ exports.monthsInQuarter = monthsInQuarter; var monthsInYear = 12; /** * Quarters in 1 year * * @name quartersInYear * @constant * @type {number} * @default */ exports.monthsInYear = monthsInYear; var quartersInYear = 4; /** * Seconds in 1 hour * * @name secondsInHour * @constant * @type {number} * @default */ exports.quartersInYear = quartersInYear; var secondsInHour = 3600; /** * Seconds in 1 minute * * @name secondsInMinute * @constant * @type {number} * @default */ exports.secondsInHour = secondsInHour; var secondsInMinute = 60; exports.secondsInMinute = secondsInMinute;