ut2 1.18.1 → 1.19.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/dist/ut2.js +2 -2
- 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/es/isTypedArray.js +1 -1
- package/lib/internals/helpers.js +1 -1
- package/lib/isTypedArray.js +1 -1
- package/package.json +1 -1
- package/types/internals/root.d.ts +1 -1
- package/types/limit.d.ts +4 -1
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.
|
|
610
|
+
var VERSION = "1.19.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';
|
|
@@ -1122,7 +1122,7 @@
|
|
|
1122
1122
|
return true;
|
|
1123
1123
|
}
|
|
1124
1124
|
|
|
1125
|
-
var typedArrayPattern = /\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;
|
|
1125
|
+
var typedArrayPattern = /\[object ((I|Ui)nt(8|16|32)|Float(16|32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;
|
|
1126
1126
|
function isTypedArray(value) {
|
|
1127
1127
|
if (nodeIsTypedArray) {
|
|
1128
1128
|
return nodeIsTypedArray(value);
|