cljs.test/function?

functionsince v1.8.51 clojure.test/function?Edit
(function? menv x)

Source docstring:
Returns true if argument is a function or a symbol that resolves to
a function (not a macro).
Source code @ clojurescript:src/main/cljs/cljs/test.cljc
(defn function?
  [menv x]
  (and (symbol? x) (:fn-var (ana-api/resolve menv x))))