util-helpers 4.18.0 → 4.18.1
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 +3 -3
- 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/VERSION.js +1 -1
- package/esm/index.js +1 -1
- package/lib/VERSION.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -6
- package/types/isPromiseLike.d.ts +1 -0
- package/types/normalizeString.d.ts +1 -0
- package/types/waitTime.d.ts +1 -0
package/esm/VERSION.js
CHANGED
package/esm/index.js
CHANGED
package/lib/VERSION.js
CHANGED
package/lib/index.js
CHANGED
|
@@ -58,7 +58,7 @@ var findTreeSelect = require('./findTreeSelect.js');
|
|
|
58
58
|
var config = require('./utils/config.js');
|
|
59
59
|
var VERSION = require('./VERSION.js');
|
|
60
60
|
|
|
61
|
-
exports.version = "4.18.
|
|
61
|
+
exports.version = "4.18.1";
|
|
62
62
|
|
|
63
63
|
exports.isMobile = isMobile;
|
|
64
64
|
exports.isTelephone = isTelephone;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "util-helpers",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.1",
|
|
4
4
|
"description": "一个基于业务场景的工具方法库",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -11,10 +11,6 @@
|
|
|
11
11
|
"test": "jest --verbose",
|
|
12
12
|
"test:coverage": "jest --coverage",
|
|
13
13
|
"test:coverage:local": "cross-env COVERAGE_LOCAL=1 jest --coverage && open ./coverage/lcov-report/index.html",
|
|
14
|
-
"test:math": "jest --verbose test/math",
|
|
15
|
-
"test:type": "jest --verbose test/type",
|
|
16
|
-
"test:validator": "jest --verbose test/validator",
|
|
17
|
-
"test:processor": "jest --verbose test/processor",
|
|
18
14
|
"build": "npm run build:module && npm run build:dist && npm run build:types",
|
|
19
15
|
"build:module": "rm -rf esm && rm -rf lib && rollup -c rollup.module.config.mjs",
|
|
20
16
|
"build:dist": "rm -rf dist && rollup -c rollup.umd.config.mjs",
|
|
@@ -97,6 +93,6 @@
|
|
|
97
93
|
},
|
|
98
94
|
"dependencies": {
|
|
99
95
|
"tslib": "^2.5.0",
|
|
100
|
-
"ut2": "^1.0.
|
|
96
|
+
"ut2": "^1.0.2"
|
|
101
97
|
}
|
|
102
98
|
}
|
package/types/isPromiseLike.d.ts
CHANGED