ClojureScript doesn't have IRecord, but we should be using record? anyway.

This commit is contained in:
Richard Newman 2016-07-11 10:57:23 -07:00
parent 0539e33d9a
commit ec03b7c06f

View file

@ -11,7 +11,7 @@
(defn plain-map? [m]
(and
(map? m)
(not (instance? clojure.lang.IRecord m))))
(not (record? m))))
#?(:clj
(defmacro defhelper [helper arglist & more]