From a20da2c883d51863cc9c051e5b8b736615f029ac Mon Sep 17 00:00:00 2001 From: Matt Phillips Date: Tue, 31 Jan 2017 22:35:25 +0000 Subject: [PATCH] Remove heading from available functions --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 054cdc8..906d5a8 100644 --- a/README.md +++ b/README.md @@ -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