@colijnit/corecomponents_v12 260.1.12 → 260.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15553,7 +15553,8 @@
15553
15553
  return split.join(':');
15554
15554
  };
15555
15555
  HourSchedulingExpandableComponent.prototype.convertTZ = function (date, tzString) {
15556
- return new Date((typeof date === "string" ? new Date(date) : date).toLocaleString("en-US", { timeZone: tzString }));
15556
+ var _a;
15557
+ return new Date((_a = (typeof date === "string" ? new Date(date) : date)) === null || _a === void 0 ? void 0 : _a.toLocaleString("en-US", { timeZone: tzString }));
15557
15558
  };
15558
15559
  HourSchedulingExpandableComponent.prototype.convertDateToEuropean = function (date) {
15559
15560
  return this.convertTZ(date, 'Europe/Amsterdam');