We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7481f7 commit fee443cCopy full SHA for fee443c
src/main/cljs/cljs/core.cljs
@@ -2771,14 +2771,22 @@ reduces them without incurring seq initialization"
2771
(defn ^number max
2772
"Returns the greatest of the nums."
2773
([x] x)
2774
- ([x y] (cljs.core/max x y))
+ ([x y]
2775
+ (cond
2776
+ (.isNaN js/Number x) x
2777
+ (.isNaN js/Number y) y
2778
+ :else (cljs.core/max x y)))
2779
([x y & more]
2780
(reduce max (cljs.core/max x y) more)))
2781
2782
(defn ^number min
2783
"Returns the least of the nums."
2784
- ([x y] (cljs.core/min x y))
2785
2786
2787
2788
2789
+ :else (cljs.core/min x y)))
2790
2791
(reduce min (cljs.core/min x y) more)))
2792
0 commit comments