@dra2020/baseclient 1.0.145 → 1.0.146
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/baseclient.js +2 -2
- package/dist/baseclient.js.map +1 -1
- package/lib/util/util.ts +2 -2
- package/package.json +1 -1
package/dist/baseclient.js
CHANGED
|
@@ -12044,7 +12044,7 @@ function deepEqual(o1, o2, options) {
|
|
|
12044
12044
|
if (o1.hasOwnProperty(p)) {
|
|
12045
12045
|
if (options && options.omitKey && options.omitKey[p])
|
|
12046
12046
|
continue;
|
|
12047
|
-
if (o2[p] === undefined)
|
|
12047
|
+
if (o2[p] === undefined && o1[p] !== undefined)
|
|
12048
12048
|
return false;
|
|
12049
12049
|
if (!deepEqual(o1[p], o2[p], options))
|
|
12050
12050
|
return false;
|
|
@@ -12054,7 +12054,7 @@ function deepEqual(o1, o2, options) {
|
|
|
12054
12054
|
if (o2.hasOwnProperty(p)) {
|
|
12055
12055
|
if (options && options.omitKey && options.omitKey[p])
|
|
12056
12056
|
continue;
|
|
12057
|
-
if (o1[p] === undefined)
|
|
12057
|
+
if (o1[p] === undefined && o2[p] !== undefined)
|
|
12058
12058
|
return false;
|
|
12059
12059
|
}
|
|
12060
12060
|
return true;
|