cljs-dev

ClojureScript compiler & std lib dev, https://clojurescript.org/community/dev
thheller 2019-11-30T11:42:26.468900Z

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

👍 1
thheller 2019-11-30T11:43:47.469600Z

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))