@mw-kit/mw-ui 1.6.5 → 1.6.6
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.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15173,7 +15173,7 @@ var intervalTypes = {
|
|
|
15173
15173
|
start.setDate(1);
|
|
15174
15174
|
start.setMonth(start.getMonth() - 1);
|
|
15175
15175
|
var end = new Date(start);
|
|
15176
|
-
end.setMonth(end.getMonth()
|
|
15176
|
+
end.setMonth(end.getMonth() + 1);
|
|
15177
15177
|
end.setDate(0);
|
|
15178
15178
|
end.setHours(23, 59, 59, 0);
|
|
15179
15179
|
return [start, end];
|