cljs.reader/macro-terminating?

functionremoved v1.9.854added v0.0-927Edit
(macro-terminating? ch)

Source code @ clojurescript:src/main/cljs/cljs/reader.cljs
(defn ^boolean macro-terminating? [ch]
  (and (not (identical? ch "#"))
       (not (identical? ch \'))
       (not (identical? ch ":"))
       (macros ch)))