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

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 v2.0.0-canary.20251228013952.4f2c3c6
2
+ * @cj-tech-master/excelts v2.0.0
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,6 +16782,13 @@ 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
+ }
16785
16792
  /**
16786
16793
  * Optimized date parser for batch processing
16787
16794
  *
@@ -16835,13 +16842,6 @@ var DateParser = class DateParser {
16835
16842
  return out;
16836
16843
  }
16837
16844
  };
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
  *