rapid-spreadjs 1.0.118 → 1.0.119

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.
package/dist/index.cjs.js CHANGED
@@ -14673,14 +14673,14 @@ const FormulaUtils = {
14673
14673
  for (var i = 0; i < allCellValsEw.length; i++) {
14674
14674
  let item = allCellValsEw[i];
14675
14675
  if (item != null && item != undefined && item.length > 0) {
14676
- for (var j = 0; j < item.length; i++) {
14676
+ for (var j = 0; j < item.length; j++) {
14677
14677
  let element = item[j];
14678
14678
  if (element != null &&
14679
14679
  element != undefined &&
14680
14680
  isPlainObject(element) &&
14681
14681
  element.hasOwnProperty('con') &&
14682
14682
  element.hasOwnProperty('val')) {
14683
- item[j] = element['val'];
14683
+ allCellValsEw[i][j] = element['val'];
14684
14684
  }
14685
14685
  }
14686
14686
  }