symbol-identical?

functionsince v1.7.10Edit
(symbol-identical? x y)

Source docstring:
Efficient test to determine that two symbols are identical.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn symbol-identical?
  [x y]
  (if (identical? x y)
    true
    (if (and (symbol? x) (symbol? y))
      (identical? (.-str x) (.-str y))
      false)))