Skip to content

Commit fee443c

Browse files
committed
* copy over min/max logic from Clojure
1 parent b7481f7 commit fee443c

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/main/cljs/cljs/core.cljs

+10-2
Original file line numberDiff line numberDiff line change
@@ -2771,14 +2771,22 @@ reduces them without incurring seq initialization"
27712771
(defn ^number max
27722772
"Returns the greatest of the nums."
27732773
([x] x)
2774-
([x y] (cljs.core/max x y))
2774+
([x y]
2775+
(cond
2776+
(.isNaN js/Number x) x
2777+
(.isNaN js/Number y) y
2778+
:else (cljs.core/max x y)))
27752779
([x y & more]
27762780
(reduce max (cljs.core/max x y) more)))
27772781

27782782
(defn ^number min
27792783
"Returns the least of the nums."
27802784
([x] x)
2781-
([x y] (cljs.core/min x y))
2785+
([x y]
2786+
(cond
2787+
(.isNaN js/Number x) x
2788+
(.isNaN js/Number y) y
2789+
:else (cljs.core/min x y)))
27822790
([x y & more]
27832791
(reduce min (cljs.core/min x y) more)))
27842792

0 commit comments

Comments
 (0)