function | since v1.10.191 | clojure.core/eval | Edit |
(eval form)
Evaluates the form data structure (not text!) and returns the result. Delegates to cljs.core/*eval*. Intended for use in self-hosted ClojureScript, which sets up an implementation of cljs.core/*eval* for that environment.
(defn eval
[form]
(*eval* form))