Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Aug 20, 2024
1 parent 9dd7826 commit 5ae16a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/malli/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@
:else (let [size (when (and bounded (not (-safely-countable? x)))
bounded)]
(loop [acc acc, i 0, [x & xs :as ne] (seq x)]
(if (and ne (or (not size) (< i #?(:cljs (long size)
(if (and ne (or (not size) (< i #?(:cljs ^number size
:default size))))
(cond-> (or (explainer x (conj in (fin i x)) acc) acc) xs (recur (inc i) xs))
acc)))))))
Expand Down

0 comments on commit 5ae16a7

Please sign in to comment.