rapid-spreadjs 1.0.62 → 1.0.64
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 -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 +1 -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
|
@@ -12856,7 +12856,6 @@ const FormulaUtils = {
|
|
|
12856
12856
|
//自定义函数逻辑
|
|
12857
12857
|
cusFun.prototype.evaluate = function () {
|
|
12858
12858
|
// 获取该自定义公式被引用单元格的索引
|
|
12859
|
-
console.log('所有参数:', arguments);
|
|
12860
12859
|
/**
|
|
12861
12860
|
* 说明:
|
|
12862
12861
|
* 如果isContext=true,则arguments的第一个参数为上下文参数,后面的参数才是自定义参数真正传入的参数
|
|
@@ -19396,7 +19395,7 @@ const FormulaUtils = {
|
|
|
19396
19395
|
funCallback: (spread, sheet, retData) => {
|
|
19397
19396
|
//如果传递的参数小于2个,则返回空字符串
|
|
19398
19397
|
if (retData.allCellVals.length < 2) {
|
|
19399
|
-
return '';
|
|
19398
|
+
return '/';
|
|
19400
19399
|
}
|
|
19401
19400
|
try {
|
|
19402
19401
|
const rangeStr = retData.allCellVals[0], num = retData.allCellVals[1];
|