@inertiajs/core 2.2.17 → 2.2.18

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.esm.js CHANGED
@@ -1099,6 +1099,14 @@ var objectsAreEqual = (obj1, obj2, excludeKeys) => {
1099
1099
  return false;
1100
1100
  }
1101
1101
  }
1102
+ for (const key in obj2) {
1103
+ if (excludeKeys.includes(key)) {
1104
+ continue;
1105
+ }
1106
+ if (!(key in obj1)) {
1107
+ return false;
1108
+ }
1109
+ }
1102
1110
  return true;
1103
1111
  };
1104
1112
  var compareValues = (value1, value2) => {