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/esm/VERSION.js CHANGED
@@ -1,4 +1,4 @@
1
- var VERSION = "4.18.0";
1
+ var VERSION = "4.18.1";
2
2
  var VERSION$1 = VERSION;
3
3
 
4
4
  export { VERSION$1 as default };
package/esm/index.js CHANGED
@@ -56,6 +56,6 @@ export { default as findTreeSelect } from './findTreeSelect.js';
56
56
  export { setDisableWarning } from './utils/config.js';
57
57
  export { default as VERSION } from './VERSION.js';
58
58
 
59
- var version = "4.18.0";
59
+ var version = "4.18.1";
60
60
 
61
61
  export { version };
package/lib/VERSION.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var VERSION = "4.18.0";
3
+ var VERSION = "4.18.1";
4
4
  var VERSION$1 = VERSION;
5
5
 
6
6
  module.exports = VERSION$1;
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.0";
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.0",
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.0"
96
+ "ut2": "^1.0.2"
101
97
  }
102
98
  }
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * 检测值是否类似Promise对象
3
3
  *
4
+ * @ignore
4
5
  * @static
5
6
  * @alias module:Validator.isPromiseLike
6
7
  * @since 3.8.0
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * 规整化字符串。如果值为 undefined 或 null 将转为空字符串,如果值不是字符串类型将转为字符串。
3
3
  *
4
+ * @ignore
4
5
  * @static
5
6
  * @alias module:Processor.normalizeString
6
7
  * @since 4.3.0
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * 等待时间返回 Promise 。常用于异步方法中延时。
3
3
  *
4
+ * @ignore
4
5
  * @static
5
6
  * @alias module:Other.waitTime
6
7
  * @since 4.2.0