autoql-fe-utils 1.0.43 → 1.0.44
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.
- package/dist/index.global.js +2 -2
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.global.js
CHANGED
|
@@ -15539,10 +15539,10 @@
|
|
|
15539
15539
|
let endDate = new Date(endDateStr);
|
|
15540
15540
|
endDate.setHours(23, 59, 59, 999);
|
|
15541
15541
|
if (isStartDateUnbounded) {
|
|
15542
|
-
startDate =
|
|
15542
|
+
startDate = void 0;
|
|
15543
15543
|
}
|
|
15544
15544
|
if (isEndDateUnbounded) {
|
|
15545
|
-
endDate =
|
|
15545
|
+
endDate = void 0;
|
|
15546
15546
|
}
|
|
15547
15547
|
return { startDate, endDate };
|
|
15548
15548
|
};
|