ClojureScript
API
GitHub
cljs.test/async?
function
since v0.0-2814
Edit
(async? x)
Source docstring:
Returns whether x implements IAsyncTest.
Source code @
clojurescript:src/main/cljs/cljs/test.cljs
(
defn
async?
[
x
]
(
satisfies?
IAsyncTest
x
)
)