File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 229
229
(goog/isString x))
230
230
231
231
(defn ^boolean char?
232
- " Returns true if x is a JavaScript char ."
232
+ " Returns true if x is a JavaScript string of length one ."
233
233
[x]
234
- (gstring/isUnicodeChar x ))
234
+ (and ( string? x) ( == 1 ( .-length x)) ))
235
235
236
236
(defn ^boolean any?
237
237
" Returns true if given any argument."
Original file line number Diff line number Diff line change 648
648
(throw (error ~env (.getMessage err#) err#)))))))
649
649
650
650
; ; 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 })
652
652
653
653
(defn implicit-import?
654
654
#? (:cljs {:tag boolean})
Original file line number Diff line number Diff line change 950
950
(is (= 1 (do #js {:a 1 }
951
951
1 )))
952
952
(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? " \u 0080" ))
963
+ (is (char? " \u FFFD" )))
You can’t perform that action at this time.
0 commit comments