@cubejs-client/core 1.3.69 → 1.3.71

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.
@@ -232,7 +232,7 @@ var _dayRange = function dayRange(from, to) {
232
232
  var results = [];
233
233
  var start = internalDayjs(from);
234
234
  var end = internalDayjs(to);
235
- while (start.isBefore(end) || start.isSame(end)) {
235
+ while (start.startOf(value).isBefore(end) || start.isSame(end)) {
236
236
  results.push(start);
237
237
  start = start.add(1, value);
238
238
  }