cilog-lib 1.13.21 → 1.13.22

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.
@@ -644,7 +644,7 @@ class ExportService {
644
644
  if (isNaN(d.getTime()))
645
645
  return null;
646
646
  const safeDate = new Date(d.getTime() + 12 * 60 * 60 * 1000);
647
- return new Date(safeDate.getFullYear(), safeDate.getMonth() + 1, safeDate.getDate(), 12, 0, 0);
647
+ return new Date(safeDate.getFullYear(), safeDate.getMonth(), safeDate.getDate(), 12, 0, 0);
648
648
  default:
649
649
  return cell.value;
650
650
  }