@cj-tech-master/excelts 1.4.5-canary.20251212053535.13d32d8 → 1.4.5-canary.20251212064440.3eb099f

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.4.5-canary.20251212053535.13d32d8
2
+ * @cj-tech-master/excelts v1.4.5-canary.20251212064440.3eb099f
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
@@ -26814,13 +26814,10 @@ var ExcelTS = (function(exports) {
26814
26814
  }
26815
26815
  this.workbook.definedNames.spliceRows(this.name, start, count, nInserts);
26816
26816
  }
26817
- eachRow(optionsOrIteratee, maybeIteratee) {
26818
- let options;
26819
- let iteratee;
26820
- if (typeof optionsOrIteratee === "function") iteratee = optionsOrIteratee;
26821
- else {
26822
- options = optionsOrIteratee;
26823
- iteratee = maybeIteratee;
26817
+ eachRow(options, iteratee) {
26818
+ if (!iteratee) {
26819
+ iteratee = options;
26820
+ options = void 0;
26824
26821
  }
26825
26822
  if (options && options.includeEmpty) {
26826
26823
  const n = this._rows.length;