rapid-spreadjs 1.0.81 → 1.0.83
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 +3 -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 +3 -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
|
@@ -8487,7 +8487,9 @@ const EChartsUtils = {
|
|
|
8487
8487
|
retArr.dataOneArr.push(Number(curCellVal));
|
|
8488
8488
|
}
|
|
8489
8489
|
else {
|
|
8490
|
-
retArr.dataOneArr.push(curCellVal == null
|
|
8490
|
+
retArr.dataOneArr.push(curCellVal == null || (curCellVal != null && curCellVal != undefined && curCellVal._error != null && curCellVal._error != undefined)
|
|
8491
|
+
? 0
|
|
8492
|
+
: curCellVal);
|
|
8491
8493
|
}
|
|
8492
8494
|
});
|
|
8493
8495
|
return retArr;
|