rapid-spreadjs 1.0.56 → 1.0.57
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
|
@@ -19139,7 +19139,7 @@ const FormulaUtils = {
|
|
|
19139
19139
|
if (retData.allCellVals.length < 2) {
|
|
19140
19140
|
return '';
|
|
19141
19141
|
}
|
|
19142
|
-
const a = retData.allCellVals[0], b = retData.allCellVals[
|
|
19142
|
+
const a = retData.allCellVals[0], b = retData.allCellVals[1];
|
|
19143
19143
|
// 计算商 d = a / b
|
|
19144
19144
|
const d = preciseCalc(a, b, 'div');
|
|
19145
19145
|
// 计算绝对值的倒数 |b/a|,并四舍五入取整
|