clojure.edn/read-string

functionsince v1.10.514 clojure.edn/read-stringEdit
(read-string s)
(read-string opts s)

Source docstring:
Reads one object from the string s.
Returns nil when s is nil or empty.

Reads data in the edn format (subset of Clojure data):
http://edn-format.org

opts is a map as per cljs.tools.reader.edn/read
Source code @ clojurescript:src/main/cljs/clojure/edn.cljs
(defn read-string
  ([s]
   (reader/read-string s))
  ([opts s]
   (reader/read-string opts s)))