There are a number of compatibility functions that are currently defined as identity functions. Among these, char
Suggested better implementation for char:
(defn char [code](.fromCharCode js/String code))
rather than current
(defn char [x] x)
(not sure of compatibility with node)
fixed http://github.com/clojure/clojurescript/commit/877a361da1c6904aa7f372aedf98b5fcf16e1e8d
Good point, thanks for the feedback.
There are a number of compatibility functions that are currently defined as identity functions. Among these, char
Suggested better implementation for char:
(defn char [code]
(.fromCharCode js/String code))
rather than current
(defn char [x] x)
(not sure of compatibility with node)