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 +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -19923,7 +19923,7 @@ const FormulaUtils = {
|
|
|
19923
19923
|
}
|
|
19924
19924
|
return '';
|
|
19925
19925
|
})
|
|
19926
|
-
.filter((val) => val !== ''); // 过滤空值
|
|
19926
|
+
.filter((val) => val !== '' && val != '/' && val != 'null' && val != null && val != undefined); // 过滤空值
|
|
19927
19927
|
// 使用指定的分隔符连接结果[2,3,5](@ref)
|
|
19928
19928
|
return resultValues.join(delimiter);
|
|
19929
19929
|
}
|