Disable arity checks

This commit is contained in:
Michiel Borkent 2021-05-27 12:00:47 +02:00
parent 4fe08dd533
commit d673a5f947

View file

@ -27,7 +27,8 @@
(def ctx (atom (sci/init {:namespaces namespaces
:classes {'js js/window
:allow :all}})))
:allow :all}
:disable-arity-checks true})))
(defn ^:export eval-string [s]
(try (sci/eval-string* @ctx s)