Converts JSON Pointer strings into Clojure paths that work with core functions like get-in, assoc-in, etc.
=> (require '[clj-json-pointer.core :as jptr])
nil
=> (jptr/to-clj-ptr "/foo/bar/0")
["foo" "bar" 0]
=> (jptr/to-clj-ptr "/foo/bar/0" :keywordize-keys true)
[:foo :bar 0]Copyright © 2018 Richard Gebbia
Distributed under the BSD 2-Clause License