Skip to content

Instantly share code, notes, and snippets.

@logaan
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save logaan/56a2870c655bd3770fc3 to your computer and use it in GitHub Desktop.
Save logaan/56a2870c655bd3770fc3 to your computer and use it in GitHub Desktop.
(defn handle-patch-operation [{:keys [op path value]} data]
(case op
:replace (assoc-in data path value)))
(handle-patch-operation
{:op :replace
:path [:completed?]
:value false}
{:text "Kittens"
:completed? true})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment