eval

functionsince v1.10.191 clojure.core/evalEdit
(eval form)

Source docstring:
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.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn eval
  [form]
  (*eval* form))