Skip to content

Commit f6a03a3

Browse files
author
dnolen
committed
make String an implicit ns like Math. revert char? and clarify docstring. add unit tests for char?
1 parent f2ebdd3 commit f6a03a3

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

src/main/cljs/cljs/core.cljs

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@
229229
(goog/isString x))
230230

231231
(defn ^boolean char?
232-
"Returns true if x is a JavaScript char."
232+
"Returns true if x is a JavaScript string of length one."
233233
[x]
234-
(gstring/isUnicodeChar x))
234+
(and (string? x) (== 1 (.-length x))))
235235

236236
(defn ^boolean any?
237237
"Returns true if given any argument."

src/main/clojure/cljs/analyzer.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@
648648
(throw (error ~env (.getMessage err#) err#)))))))
649649

650650
;; namespaces implicit to the inclusion of cljs.core
651-
(def implicit-nses '#{goog goog.object goog.string goog.array Math})
651+
(def implicit-nses '#{goog goog.object goog.string goog.array Math String})
652652

653653
(defn implicit-import?
654654
#?(:cljs {:tag boolean})

src/test/cljs/cljs/primitives_test.cljs

+11-1
Original file line numberDiff line numberDiff line change
@@ -950,4 +950,14 @@
950950
(is (= 1 (do #js {:a 1}
951951
1)))
952952
(is (= 1 (aget #js {:a 1} "a")))
953-
(is (= 1 (.-a #js {:a 1})))))
953+
(is (= 1 (.-a #js {:a 1})))))
954+
955+
(deftest test-char?
956+
(is (char? "0"))
957+
(is (char? (String/fromCharCode 13)))
958+
(is (char? (String/fromCharCode 10)))
959+
(is (char? \newline))
960+
(is (char? \space))
961+
(is (char? "0"))
962+
(is (char? "\u0080"))
963+
(is (char? "\uFFFD")))

0 commit comments

Comments
 (0)