*exec-tap-fn*

dynamic varsince v1.10.63Edit
(*exec-tap-fn* f)

Source docstring:
Arranges to have tap functions executed via the supplied f, a
function of no arguments. Returns true if successful, false otherwise.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn ^{:dynamic true}
  *exec-tap-fn*
  [f]
  (and
    (exists? js/setTimeout)
    ;; See CLJS-3274 - workaround for recent WebKit releases
    (boolean (js/setTimeout f 0))))