fix kw->sym for cljs!

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2025-03-12 15:47:58 -07:00
parent 2c8fc30b1d
commit 74cf16c134
No known key found for this signature in database

View file

@ -1734,7 +1734,9 @@
[k]
(if (keyword? k)
#?(:clj (.sym ^clojure.lang.Keyword k)
:default (subs (str k) 1))
:default (if-let [n (namespace k)]
(symbol n (name k))
(symbol (name k))))
k))
(defn format-dsl