Skip to content

Commit

Permalink
Remove heading from available functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips authored Jan 31, 2017
1 parent 538dd52 commit a20da2c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ npm i --save deep-object-diff
```

## Functions available:
- ### [`diff(originalObj, updatedObj)`](#diff)
- [`diff(originalObj, updatedObj)`](#diff)
returns the difference of the original and updated objects

- ### [`addedDiff(original, updatedObj)`](#addeddiff)
- [`addedDiff(original, updatedObj)`](#addeddiff)
returns only the values added to the updated object

- ### [`deletedDiff(original, updatedObj)`](#deleteddiff)
- [`deletedDiff(original, updatedObj)`](#deleteddiff)
returns only the values deleted in the updated object

- ### [`updatedDiff(original, updatedObj)`](#updateddiff)
- [`updatedDiff(original, updatedObj)`](#updateddiff)
returns only the values that have been changed in the updated object

- ### [`detailedDiff(original, updatedObj)`](#detaileddiff)
- [`detailedDiff(original, updatedObj)`](#detaileddiff)
returns an object with the added, deleted and updated differences

## Importing
Expand Down

0 comments on commit a20da2c

Please sign in to comment.