@arrai-innovations/reactive-helpers 11.0.4 → 11.0.5
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/package.json
CHANGED
|
@@ -309,7 +309,7 @@ function recursiveInner(target, source, exclude, addedKeys, sameKeys, path, fn)
|
|
|
309
309
|
const keysForRecurse = [];
|
|
310
310
|
const keysForReplace = [];
|
|
311
311
|
for (const key of sameKeys) {
|
|
312
|
-
if (!exclude
|
|
312
|
+
if (!exclude?.includes(key)) {
|
|
313
313
|
if (isObject(source[key]) && isObject(target[key])) {
|
|
314
314
|
keysForRecurse.push(key);
|
|
315
315
|
} else if (target[key] !== source[key]) {
|