(read-str string & options)
Reads one JSON value from input String. Options are the same as for
read.
Source
(defn read-str
"Reads one JSON value from input String. Options are the same as for
read."
[string & options]
(apply read (StringReader. string) options))