var $c51b7e0106f45dea$exports = require("./CalendarDate.cjs"); var $e13115b3b86b9007$exports = require("./conversion.cjs"); var $84a63d30beb0af0f$exports = require("./queries.cjs"); var $05031860ba2f881f$exports = require("./calendars/GregorianCalendar.cjs"); function $parcel$export(e, n, v, s) { Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true}); } $parcel$export(module.exports, "parseTime", function () { return $1b358053f79e3a77$export$c9698ec7f05a07e1; }); $parcel$export(module.exports, "parseDate", function () { return $1b358053f79e3a77$export$6b862160d295c8e; }); $parcel$export(module.exports, "parseDateTime", function () { return $1b358053f79e3a77$export$588937bcd60ade55; }); $parcel$export(module.exports, "parseZonedDateTime", function () { return $1b358053f79e3a77$export$fd7893f06e92a6a4; }); $parcel$export(module.exports, "dateTimeToString", function () { return $1b358053f79e3a77$export$4223de14708adc63; }); $parcel$export(module.exports, "parseAbsolute", function () { return $1b358053f79e3a77$export$5adfdab05168c219; }); $parcel$export(module.exports, "parseAbsoluteToLocal", function () { return $1b358053f79e3a77$export$8e384432362ed0f0; }); $parcel$export(module.exports, "timeToString", function () { return $1b358053f79e3a77$export$f59dee82248f5ad4; }); $parcel$export(module.exports, "dateToString", function () { return $1b358053f79e3a77$export$60dfd74aa96791bd; }); $parcel$export(module.exports, "zonedDateTimeToString", function () { return $1b358053f79e3a77$export$bf79f1ebf4b18792; }); $parcel$export(module.exports, "parseDuration", function () { return $1b358053f79e3a77$export$ecae829bb3747ea6; }); /* * Copyright 2020 Adobe. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ const $1b358053f79e3a77$var$TIME_RE = /^(\d{2})(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?$/; const $1b358053f79e3a77$var$DATE_RE = /^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})$/; const $1b358053f79e3a77$var$DATE_TIME_RE = /^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})(?:T(\d{2}))?(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?$/; const $1b358053f79e3a77$var$ZONED_DATE_TIME_RE = /^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})(?:T(\d{2}))?(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?(?:([+-]\d{2})(?::?(\d{2}))?(?::?(\d{2}))?)?\[(.*?)\]$/; const $1b358053f79e3a77$var$ABSOLUTE_RE = /^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})(?:T(\d{2}))?(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?(?:(?:([+-]\d{2})(?::?(\d{2}))?)|Z)$/; const $1b358053f79e3a77$var$DATE_TIME_DURATION_RE = /^((?-)|\+)?P((?\d*)Y)?((?\d*)M)?((?\d*)W)?((?\d*)D)?((?