util-helpers 4.12.1 → 4.12.2
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/util-helpers.js +2 -2
- package/dist/util-helpers.js.map +1 -1
- package/dist/util-helpers.min.js +1 -1
- package/dist/util-helpers.min.js.map +1 -1
- package/esm/index.js +2 -2
- package/esm/utils/config.js +1 -1
- package/esm/utils/math.util.js +1 -1
- package/lib/utils/config.js +1 -1
- package/lib/utils/math.util.js +1 -1
- package/package.json +1 -1
package/dist/util-helpers.js
CHANGED
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
return lastCode === checkCode;
|
|
563
563
|
}
|
|
564
564
|
|
|
565
|
-
const version = "4.12.
|
|
565
|
+
const version = "4.12.2";
|
|
566
566
|
|
|
567
567
|
var config = {
|
|
568
568
|
// 禁用warning提示
|
|
@@ -1654,7 +1654,7 @@
|
|
|
1654
1654
|
if (fmtStrValue === value) {
|
|
1655
1655
|
var numValue = fmtStrValue ? Number(fmtStrValue) : NaN;
|
|
1656
1656
|
|
|
1657
|
-
if (
|
|
1657
|
+
if (!isNaN(numValue)) {
|
|
1658
1658
|
return true;
|
|
1659
1659
|
}
|
|
1660
1660
|
}
|