corebasic 1.0.229 → 1.0.230
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/libs/utils.ts +1 -1
- package/package.json +1 -1
package/libs/utils.ts
CHANGED
|
@@ -124,7 +124,7 @@ export function toDate(arg: string, currentTime?: boolean): Date | undefined { /
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
export function getDatesBetweenTwoDates(start: number | Date, end: number | Date) {
|
|
127
|
-
let arr = [];
|
|
127
|
+
let arr: Date[] = [];
|
|
128
128
|
let dt = new Date(start);
|
|
129
129
|
|
|
130
130
|
dt.setHours(0)
|