cljs-dev

ClojureScript compiler & std lib dev, https://clojurescript.org/community/dev
2020-03-11T17:00:57.007500Z

@dnolen Would it make sense to warn on bad args for cljs.core/min and cljs.core/max since they are tagged as numeric?

2020-03-11T17:13:55.007900Z

this one is weird

(min 0 nil 1 2 3) -> nil
(min nil 0 1 2 3) -> 0

dnolen 2020-03-11T19:28:54.008500Z

@roman01la I'm ok with that