@cj-tech-master/excelts 1.6.3-canary.20251226035947.ef0b4f2 → 2.0.0-canary.20251228013952.4f2c3c6

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @cj-tech-master/excelts v1.6.3-canary.20251226035947.ef0b4f2
2
+ * @cj-tech-master/excelts v2.0.0-canary.20251228013952.4f2c3c6
3
3
  * TypeScript Excel Workbook Manager - Read and Write xlsx and csv Files.
4
4
  * (c) 2025 cjnoname
5
5
  * Released under the MIT License
@@ -16782,13 +16782,6 @@ const AUTO_DETECT = [
16782
16782
  [25, [parseISOOffset]],
16783
16783
  [29, [parseISOMsOffset]]
16784
16784
  ];
16785
- function tzOffset(d) {
16786
- const off = -d.getTimezoneOffset();
16787
- const sign = off >= 0 ? "+" : "-";
16788
- const h = Math.abs(off) / 60 | 0;
16789
- const m = Math.abs(off) % 60;
16790
- return `${sign}${PAD2[h]}:${PAD2[m]}`;
16791
- }
16792
16785
  /**
16793
16786
  * Optimized date parser for batch processing
16794
16787
  *
@@ -16842,6 +16835,13 @@ var DateParser = class DateParser {
16842
16835
  return out;
16843
16836
  }
16844
16837
  };
16838
+ function tzOffset(d) {
16839
+ const off = -d.getTimezoneOffset();
16840
+ const sign = off >= 0 ? "+" : "-";
16841
+ const h = Math.abs(off) / 60 | 0;
16842
+ const m = Math.abs(off) % 60;
16843
+ return `${sign}${PAD2[h]}:${PAD2[m]}`;
16844
+ }
16845
16845
  /**
16846
16846
  * Optimized date formatter for batch processing
16847
16847
  *