cvkem/jsonDiff
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# jsonDiff Library to compare two json-object and find the difference/patches. Patches can be replayed to another similar json-object. (defn findPatchesJson [org mod] ...) "Find the patches to translate json-object 'org' to 'mod'. Wrapper that calls 'findPatchesZipper' (See 'findPatchesZipper' for details)." (defn applyPatchesJson [org patches] ...) Applies the 'patches' to json-object 'org' and returns the modified object. Copyright (C) 2010 Vinzi Distributed under the Eclipse Public License, the same as Clojure.