cljs.reader/special-symbols

functionremoved v1.9.854added v0.0-927Edit
(special-symbols t not-found)

Source code @ clojurescript:src/main/cljs/cljs/reader.cljs
(defn special-symbols [t not-found]
  (cond
    (identical? t "nil") nil
    (identical? t "true") true
    (identical? t "false") false
    (identical? t "/") '/
    :else not-found))