最小化失败案例
(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.langUnsupportedOperationException: nth 不支持此类型:Keyword
如果键没有被格式化,那么我们也不应尝试解除它们的格式。