bughelp wanted
Métricas do repositório
- Stars
- (1.724 stars)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description
;; ok
(m/decode
[:tuple string? string?]
[]
(mt/string-transformer))
; => []
;; fail
(m/decode
[:tuple keyword? string?]
[]
(mt/string-transformer))
; => [nil]
;; megafail
(m/decode
[:tuple string? keyword?]
[]
(mt/string-transformer))
; =throws=> Execution error (IndexOutOfBoundsException) at malli.core/-update (core.cljc:194).