@sladg/apex-state 3.7.0 → 3.7.1

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.js CHANGED
@@ -3096,7 +3096,7 @@ var hashKey = {
3096
3096
 
3097
3097
  // src/utils/apply-changes.ts
3098
3098
  var applyChangesToObject = (obj, changes) => {
3099
- const result = structuredClone(obj);
3099
+ const result = deepClone(obj);
3100
3100
  for (const [path, value] of changes) {
3101
3101
  dot.set__unsafe(result, path, value);
3102
3102
  }