rapid-spreadjs 1.0.81 → 1.0.83

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
@@ -8509,7 +8509,9 @@ const EChartsUtils = {
8509
8509
  retArr.dataOneArr.push(Number(curCellVal));
8510
8510
  }
8511
8511
  else {
8512
- retArr.dataOneArr.push(curCellVal == null ? 0 : curCellVal);
8512
+ retArr.dataOneArr.push(curCellVal == null || (curCellVal != null && curCellVal != undefined && curCellVal._error != null && curCellVal._error != undefined)
8513
+ ? 0
8514
+ : curCellVal);
8513
8515
  }
8514
8516
  });
8515
8517
  return retArr;