ut2 1.21.0 → 1.21.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 +1 -1
- package/dist/ut2.js +1 -1
- package/dist/ut2.js.map +1 -1
- package/dist/ut2.min.js +1 -1
- package/dist/ut2.min.js.map +1 -1
- package/es/internals/helpers.js +1 -1
- package/lib/internals/getTagWithBugfix.js +4 -4
- package/lib/internals/helpers.js +1 -1
- package/package.json +18 -18
- package/types/countBy.d.ts +1 -0
- package/types/every.d.ts +1 -0
- package/types/filter.d.ts +1 -0
- package/types/find.d.ts +1 -0
- package/types/forEach.d.ts +1 -0
- package/types/forEachRight.d.ts +1 -0
- package/types/groupBy.d.ts +1 -0
- package/types/isNil.d.ts +1 -1
- package/types/isObject.d.ts +1 -2
- package/types/isPromiseLike.d.ts +1 -1
- package/types/keyBy.d.ts +1 -0
- package/types/map.d.ts +1 -0
- package/types/orderBy.d.ts +1 -0
- package/types/partition.d.ts +1 -0
- package/types/reduce.d.ts +1 -0
- package/types/reduceRight.d.ts +1 -0
- package/types/some.d.ts +1 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
一个现代 JavaScript 实用工具库。[点击查看在线文档]。
|
|
4
4
|
|
|
5
|
-
[![npm][npm]][npm-url] [](https://github.com/caijf/ut2/actions/workflows/ci.yml) [](https://codecov.io/gh/caijf/ut2) [](https://s57jpy.csb.app/) ](https://github.com/caijf/ut2/actions/workflows/ci.yml) [](https://codecov.io/gh/caijf/ut2) [](https://s57jpy.csb.app/)  
|
|
6
6
|
|
|
7
7
|
## 比较
|
|
8
8
|
|
package/dist/ut2.js
CHANGED
|
@@ -607,7 +607,7 @@
|
|
|
607
607
|
return value == null || value !== value ? defaultValue : value;
|
|
608
608
|
};
|
|
609
609
|
|
|
610
|
-
var VERSION = "1.21.
|
|
610
|
+
var VERSION = "1.21.1";
|
|
611
611
|
var isBrowser = typeof window !== stringUndefined && isObjectLike(window) && typeof document !== stringUndefined && isObjectLike(document) && window.document === document;
|
|
612
612
|
var supportedArgumentsType = getTag((function () { return arguments; })()) === argumentsTag;
|
|
613
613
|
var FUNC_ERROR_TEXT = 'Expected a function';
|