util-helpers 4.19.2 → 4.19.3
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/README.md +1 -0
- package/dist/util-helpers.js +3 -3
- 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/VERSION.js +1 -1
- package/esm/index.js +1 -1
- package/esm/numberToChinese.js +1 -1
- package/lib/VERSION.js +1 -1
- package/lib/index.js +1 -1
- package/lib/numberToChinese.js +1 -1
- package/package.json +7 -7
- package/types/formatBankCard.d.ts +1 -1
- package/types/formatMobile.d.ts +1 -1
- package/types/normalizeString.d.ts +1 -1
- package/types/padZero.d.ts +1 -1
- package/types/replaceChar.d.ts +1 -1
package/README.md
CHANGED
|
@@ -127,6 +127,7 @@ formatBankCard('6228480402564890018', { spaceMark: '-' }); // 6228-4804-0256-489
|
|
|
127
127
|
[query-string]: https://www.npmjs.com/package/query-string
|
|
128
128
|
[qs]: https://www.npmjs.com/package/qs
|
|
129
129
|
[js-cookie]: https://www.npmjs.com/package/js-cookie
|
|
130
|
+
[cache2]: https://www.npmjs.com/package/cache2
|
|
130
131
|
[moment]: https://www.npmjs.com/package/moment
|
|
131
132
|
[dayjs]: https://www.npmjs.com/package/dayjs
|
|
132
133
|
[date-fns]: https://www.npmjs.com/package/date-fns
|
package/dist/util-helpers.js
CHANGED
|
@@ -1013,7 +1013,7 @@
|
|
|
1013
1013
|
var ret = '';
|
|
1014
1014
|
if (index > -1) {
|
|
1015
1015
|
var decimalStr = strNum.slice(index + 1);
|
|
1016
|
-
ret = mapNumberChar(
|
|
1016
|
+
ret = mapNumberChar(decimalStr);
|
|
1017
1017
|
}
|
|
1018
1018
|
return ret;
|
|
1019
1019
|
}
|
|
@@ -1820,9 +1820,9 @@
|
|
|
1820
1820
|
return internalFindTreeSelect(tree, predicate, childrenField);
|
|
1821
1821
|
}
|
|
1822
1822
|
|
|
1823
|
-
var VERSION = "4.19.
|
|
1823
|
+
var VERSION = "4.19.3";
|
|
1824
1824
|
|
|
1825
|
-
var version = "4.19.
|
|
1825
|
+
var version = "4.19.3";
|
|
1826
1826
|
|
|
1827
1827
|
exports.VERSION = VERSION;
|
|
1828
1828
|
exports.ajax = ajax;
|