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.cjs.js CHANGED
@@ -16394,7 +16394,7 @@ const FormulaUtils = {
16394
16394
  }
16395
16395
  else {
16396
16396
  var num = k2.replace('≥', '').replace('不小于', '').replace('≮', '') * 1;
16397
- if (IsNumber(k1)) {
16397
+ if (FormulaUtils.commFun.isNumber(k1)) {
16398
16398
  if (k1 > num || k1 == num) {
16399
16399
  kk = '合格';
16400
16400
  }
@@ -16541,7 +16541,7 @@ const FormulaUtils = {
16541
16541
  }
16542
16542
  }
16543
16543
  else {
16544
- if (IsNumber(k2))
16544
+ if (FormulaUtils.commFun.isNumber(k2))
16545
16545
  k2 = k2 * 1;
16546
16546
  if (k1 >= k2) {
16547
16547
  kk = '合格';