rapid-spreadjs 1.0.158 → 1.0.159
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 +6 -2
- 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 +6 -2
- 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.cjs.js
CHANGED
|
@@ -21525,11 +21525,15 @@ const FormulaUtils = {
|
|
|
21525
21525
|
retData.allCellValsEw.forEach((item) => {
|
|
21526
21526
|
if (Array.isArray(item)) {
|
|
21527
21527
|
item.forEach((itemSon) => {
|
|
21528
|
-
|
|
21528
|
+
if (itemSon != '/' && !(itemSon._error != undefined && itemSon._error != null)) {
|
|
21529
|
+
retVals.push(itemSon);
|
|
21530
|
+
}
|
|
21529
21531
|
});
|
|
21530
21532
|
}
|
|
21531
21533
|
else {
|
|
21532
|
-
|
|
21534
|
+
if (item != '/' && !(item._error != undefined && item._error != null)) {
|
|
21535
|
+
retVals.push(item);
|
|
21536
|
+
}
|
|
21533
21537
|
}
|
|
21534
21538
|
});
|
|
21535
21539
|
let tmp_xy = retVals;
|