We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534feb8 commit 966234eCopy full SHA for 966234e
src/applied_science/js_interop.cljc
@@ -16,7 +16,7 @@
16
`(clojure.core/let ~@body))
17
18
(defmacro call-in [obj path & fs]
19
- `(.. ~obj ~@(map #(symbol (str "-" %)) path) ~@(map list fs)))
+ `(.. ~obj ~@(map #(symbol (str "-" (name %))) path) ~@(map list fs)))
20
21
(defmacro call [obj f & args]
22
(list* (symbol (str "." (name f))) obj args))
0 commit comments