rapid-spreadjs 1.0.80 → 1.0.81

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
@@ -19945,7 +19945,7 @@ const FormulaUtils = {
19945
19945
  }
19946
19946
  return '';
19947
19947
  })
19948
- .filter((val) => val !== ''); // 过滤空值
19948
+ .filter((val) => val !== '' && val != '/' && val != 'null' && val != null && val != undefined); // 过滤空值
19949
19949
  // 使用指定的分隔符连接结果[2,3,5](@ref)
19950
19950
  return resultValues.join(delimiter);
19951
19951
  }