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.
Files changed (2) hide show
  1. package/libs/utils.ts +1 -1
  2. 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)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "corebasic",
3
3
  "type": "module",
4
- "version": "1.0.229",
4
+ "version": "1.0.230",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "types": "./index.ts",