dynamic var | since v1.10.63 | Edit |
(*exec-tap-fn* f)
Arranges to have tap functions executed via the supplied f, a function of no arguments. Returns true if successful, false otherwise.
(defn ^{:dynamic true}
*exec-tap-fn*
[f]
(and
(exists? js/setTimeout)
;; See CLJS-3274 - workaround for recent WebKit releases
(boolean (js/setTimeout f 0))))