rapid-spreadjs 1.0.155 → 1.0.156

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.esm.js CHANGED
@@ -16372,7 +16372,7 @@ const FormulaUtils = {
16372
16372
  }
16373
16373
  else {
16374
16374
  var num = k2.replace('≥', '').replace('不小于', '').replace('≮', '') * 1;
16375
- if (IsNumber(k1)) {
16375
+ if (FormulaUtils.commFun.isNumber(k1)) {
16376
16376
  if (k1 > num || k1 == num) {
16377
16377
  kk = '合格';
16378
16378
  }
@@ -16519,7 +16519,7 @@ const FormulaUtils = {
16519
16519
  }
16520
16520
  }
16521
16521
  else {
16522
- if (IsNumber(k2))
16522
+ if (FormulaUtils.commFun.isNumber(k2))
16523
16523
  k2 = k2 * 1;
16524
16524
  if (k1 >= k2) {
16525
16525
  kk = '合格';