@whitesev/utils 1.3.9 → 1.4.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/index.amd.js +3 -0
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +3 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +3 -0
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +3 -0
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +3 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/src/Utils.d.ts +1 -1
- package/package.json +1 -1
- package/src/Utils.ts +4 -1
package/dist/index.system.js
CHANGED
|
@@ -5957,6 +5957,9 @@ System.register('Utils', [], (function (exports) {
|
|
|
5957
5957
|
if (typeof obj !== "object") {
|
|
5958
5958
|
return;
|
|
5959
5959
|
}
|
|
5960
|
+
if (obj == null) {
|
|
5961
|
+
return;
|
|
5962
|
+
}
|
|
5960
5963
|
if ((typeof checkPropertyName === "function" && checkPropertyName(obj)) ||
|
|
5961
5964
|
Reflect.has(obj, checkPropertyName)) {
|
|
5962
5965
|
isResolve = true;
|