@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 +8 -0
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +8 -0
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/types/objectUtils.d.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1154,6 +1154,14 @@ var objectsAreEqual = (obj1, obj2, excludeKeys) => {
|
|
|
1154
1154
|
return false;
|
|
1155
1155
|
}
|
|
1156
1156
|
}
|
|
1157
|
+
for (const key in obj2) {
|
|
1158
|
+
if (excludeKeys.includes(key)) {
|
|
1159
|
+
continue;
|
|
1160
|
+
}
|
|
1161
|
+
if (!(key in obj1)) {
|
|
1162
|
+
return false;
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1157
1165
|
return true;
|
|
1158
1166
|
};
|
|
1159
1167
|
var compareValues = (value1, value2) => {
|