util-helpers 5.4.1 → 5.4.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.
@@ -1061,8 +1061,8 @@
1061
1061
  unitChar = chnUnitChar.slice();
1062
1062
  decimal = decimal || '点';
1063
1063
  }
1064
- var unitWan = (unitConfig === null || unitConfig === void 0 ? void 0 : unitConfig.w) || '万';
1065
- var unitYi = (unitConfig === null || unitConfig === void 0 ? void 0 : unitConfig.y) || '亿';
1064
+ var unitWan = unitConfig.w || '万';
1065
+ var unitYi = unitConfig.y || '亿';
1066
1066
  var unitWanYi = unitWan + unitYi;
1067
1067
  unitSection = ['', unitWan, unitYi, unitWanYi];
1068
1068
  if (zero) {
@@ -2152,7 +2152,7 @@
2152
2152
  return internalFindTreeSelect(tree, predicate, childrenField);
2153
2153
  }
2154
2154
 
2155
- var VERSION = "5.4.1";
2155
+ var VERSION = "5.4.2";
2156
2156
 
2157
2157
  /**
2158
2158
  * 事件触发器,支持浏览器端和 node 端。