Fork me on GitHub
#cljs-dev
<
2019-11-30
>
thheller11:11:26

any objections to this before I start putting together a patch? https://clojure.atlassian.net/browse/CLJS-3200

👍 4
thheller11:11:47

basically will add this to cljs.core and make the desctructure macro use it instead of emitting the implements? check

(defn destructure-map [arg]
  (if (implemements? ISeq arg) (apply hash-map arg) arg))