simple-ident?

functionsince v1.9.75 clojure.core/simple-ident?Edit
(simple-ident? x)

Source docstring:
Return true if x is a symbol or keyword without a namespace
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn simple-ident?
  [x] (and (ident? x) (nil? (namespace x))))