rapid-spreadjs 1.0.61 → 1.0.62

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.esm.js CHANGED
@@ -19379,7 +19379,7 @@ const FormulaUtils = {
19379
19379
  try {
19380
19380
  const rangeStr = retData.allCellVals[0], num = retData.allCellVals[1];
19381
19381
  // 参数基础校验
19382
- if (typeof rangeStr !== 'string' || typeof num !== 'number' || isNaN(num)) {
19382
+ if (rangeStr == null || rangeStr == undefined || typeof rangeStr !== 'string' || typeof num !== 'number' || isNaN(num)) {
19383
19383
  return '/';
19384
19384
  }
19385
19385
  // 去除字符串中的空格