malli icon indicating copy to clipboard operation
malli copied to clipboard

mask valid values by default with malli.dev.pretty/explain

Open ikitommi opened this issue 2 years ago • 0 comments

(malli.dev.pretty/explain
 [:map
  [:id :int]
  [:tags [:set :keyword]]
  [:address [:map
             [:street :string]
             [:city :string]
             [:zip :int]
             [:lonlat [:tuple :double :double]]]]]
 {:id "123"
  :EXTRA "KEY"
  :tags #{:artesan "coffee" :garden}
  :address {:street "Ahlmanintie 29"
            :city "Tampere"
            :zip 33100
            :lonlat [61.4858322, 23.7832851]}})

=>

Screenshot 2022-08-10 at 17 44 48

ikitommi avatar Aug 10 '22 14:08 ikitommi