(js-symbol? x)
Returns true if x is an instance of Symbol
(defn js-symbol? [x] (or (identical? (goog/typeOf x) "symbol") (and (exists? js/Symbol) (instance? js/Symbol x))))