cljs.reader/read-symbol

functionremoved v1.9.854added v0.0-927Edit
(read-symbol reader initch)

Source code @ clojurescript:src/main/cljs/cljs/reader.cljs
(defn read-symbol
  [reader initch]
  (let [token (read-token reader initch)]
    (if (and (gstring/contains token "/")
             (not (== (.-length token) 1)))
      (symbol (subs token 0 (.indexOf token "/"))
              (subs token (inc (.indexOf token "/"))
                (.-length token)))
      (special-symbols token (symbol token)))))