first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,28 @@
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimeConstants = void 0;
exports.TimeConstants = {
MillisecondsInOneDay: 86400000,
MillisecondsIn1Sec: 1000,
MillisecondsIn1Min: 60000,
MillisecondsIn30Mins: 1800000,
MillisecondsIn1Hour: 3600000,
MinutesInOneDay: 1440,
MinutesInOneHour: 60,
DaysInOneWeek: 7,
MonthInOneYear: 12,
HoursInOneDay: 24,
SecondsInOneMinute: 60,
OffsetTo24HourFormat: 12,
/**
* Matches a time string. Groups:
* 1. hours (with or without leading 0)
* 2. minutes
* 3. seconds (optional)
* 4. meridiem (am/pm, case-insensitive, optional)
*/
TimeFormatRegex: /^(\d\d?):(\d\d):?(\d\d)? ?([ap]m)?/i,
};
});
//# sourceMappingURL=timeConstants.js.map