@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arrai-innovations/reactive-helpers",
3
- "version": "11.0.4",
3
+ "version": "11.0.5",
4
4
  "description": "VueJS 3 utility composition functions to help manipulate objects and lists.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -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.includes(key)) {
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]) {