js-symbol?

functionsince v1.10.738Edit
(js-symbol? x)

Source docstring:
Returns true if x is an instance of Symbol
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn js-symbol?
  [x]
  (or (identical? (goog/typeOf x) "symbol")
      (and (exists? js/Symbol)
           (instance? js/Symbol x))))