Details
-
Type:
Defect
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Completed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
-
Environment:This is the behavior on rhino repl, haven't tested on browser
Description
When running the cljs.core/str function with symbols or keywords the output is not the same as in clojure
ClojureScript:cljs.user> (str "hello" :world)
"hello?'world"
The same happens with symbols, it seems the characters used internally for figuring out if a string is a keyword or symbol are not being escaped correctly on the cljs.core/str function.