ClojureScript
API
GitHub
ident?
function
since v1.9.75
clojure.core/ident?
Edit
(ident? x)
Source docstring:
Return true if x is a symbol or keyword
Source code @
clojurescript:src/main/cljs/cljs/core.cljs
(
defn
ident?
[
x
]
(
or
(
keyword?
x
)
(
symbol?
x
)
)
)