8000
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 7cee8ab commit 5365601Copy full SHA for 5365601
src/cljs/cljs/core.cljs
@@ -219,11 +219,6 @@
219
(defn type [x]
220
(js* "(~{x}).constructor"))
221
222
-(extend-type js/Function
223
- IPrintable
224
- (-pr-seq [this]
225
- (list "#<" (str this) ">")))
226
-
227
;;;;;;;;;;;;;;;;;;; protocols on primitives ;;;;;;;;
228
(declare hash-map list equiv-sequential)
229
@@ -2978,6 +2973,10 @@ reduces them without incurring seq initialization"
2978
2973
(goog.string.quote obj)
2979
2974
obj))))
2980
2975
2976
+ function
2977
+ (-pr-seq [this]
+ (list "#<" (str this) ">"))
+
2981
LazySeq
2982
(-pr-seq [coll opts] (pr-sequential pr-seq "(" " " ")" opts coll))
2983
0 commit comments