js-iterable?

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

Source docstring:
Return true if x has a JavaScript iterator property
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn js-iterable?
  [x]
  (and (not (nil? x))
       (not (nil? (js* "~{}[~{}]" x ITER_SYMBOL)))))