0.0.2 • Published 8 years ago

merge-patch v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

merge-patch

JSON Merge-Patch Implementation with Diff and Combine

This module exports three functions:

//  applies the patch to the target and returns the new value
function apply(target, patch)

//  returns the patch which will convert the old value to the new value
//  returns undefined if there is no change
function diff(oldValue, newValue)

//  combines two patches into a single patch which applies both changes
function combine(patch1, patch2)