@seniorsistemas/angular-components 17.6.2 → 17.6.4

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.
@@ -15414,7 +15414,10 @@
15414
15414
  if (a === b) {
15415
15415
  return true;
15416
15416
  }
15417
- if (typeof a !== "object" || a === null || typeof b !== "object" || b === null) {
15417
+ if (a === undefined || b === undefined || typeof a !== "object" || a === null || typeof b !== "object" || b === null) {
15418
+ return false;
15419
+ }
15420
+ if (Array.isArray(a) !== Array.isArray(b)) {
15418
15421
  return false;
15419
15422
  }
15420
15423
  var keysA = Object.keys(a);
@@ -15437,6 +15440,11 @@
15437
15440
  }
15438
15441
  finally { if (e_1) throw e_1.error; }
15439
15442
  }
15443
+ for (var key in a) {
15444
+ if (a.hasOwnProperty(key) !== b.hasOwnProperty(key)) {
15445
+ return false;
15446
+ }
15447
+ }
15440
15448
  return true;
15441
15449
  };
15442
15450
  return _compare(item1, item2);