Ran into this while converting boolean type attributes to Clojure kebab-keywords.
Examples:
(require '[cuerdas.core :as str])
(str/kebab "got_milk?")
; => "got-milk"
(str/kebab :got_milk?)
; => "got-milk"
(str/keyword "got_milk?")
; => :got-milk
(str/keyword :got_milk?)
; => :got-milk
;; clojure keyword
(keyword "got_milk?")
; => :got_milk?
Ran into this while converting boolean type attributes to Clojure kebab-keywords.
Examples: