@2ltech/deep-object-diff
v1.1.8
Published
Deep diffs two objects, including nested structures of arrays and objects, and return the difference.
Readme
Forked from mattphilipps/deep-object-diff
Deep difference between two Javascript objects
Installation
yarn add @2ltech/deep-object-diff npm i --save @2ltech/deep-object-diffAvailable functions
diff(originalObj, updatedObj)returns the difference of the original and updated objectsaddedDiff(original, updatedObj)returns only the values added to the updated objectdeletedDiff(original, updatedObj)returns only the values deleted in the updated objectupdatedDiff(original, updatedObj)returns only the values that have been changed in the updated objectdetailedDiff(original, updatedObj)returns an object with the added, deleted and updated differences
