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.esm.js
CHANGED
|
@@ -21503,11 +21503,15 @@ const FormulaUtils = {
|
|
|
21503
21503
|
retData.allCellValsEw.forEach((item) => {
|
|
21504
21504
|
if (Array.isArray(item)) {
|
|
21505
21505
|
item.forEach((itemSon) => {
|
|
21506
|
-
|
|
21506
|
+
if (itemSon != '/' && !(itemSon._error != undefined && itemSon._error != null)) {
|
|
21507
|
+
retVals.push(itemSon);
|
|
21508
|
+
}
|
|
21507
21509
|
});
|
|
21508
21510
|
}
|
|
21509
21511
|
else {
|
|
21510
|
-
|
|
21512
|
+
if (item != '/' && !(item._error != undefined && item._error != null)) {
|
|
21513
|
+
retVals.push(item);
|
|
21514
|
+
}
|
|
21511
21515
|
}
|
|
21512
21516
|
});
|
|
21513
21517
|
let tmp_xy = retVals;
|