-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Description
(let [s "word100word"]
(= (->snake_case (->kebab-case s))
"word100word"))
=> false
becaouse
(->kebab-case "word100word")
=> "word-100-word"
(->snake_case "word-100-word")
=> "word_100_word"
(->snake_case "word100word")
=> "word_100word"
In my opinion numbers case should be recognised as a case of the preceding word
Metadata
Metadata
Assignees
Labels
No labels