最小化失败案例
(s/def ::key-spec (s/or :kw keyword? :str string?))
(s/def ::map-spec (s/map-of ::key-spec identity))
(println (s/unform ::map-spec (s/conform ::map-spec {:a :b})))
java.lang.UnsupportedOperationException: nth 不支持此类型:Keyword
如果键未通过校验,我们也不应该尝试对它们进行统一。