StringCase
StringCase copied to clipboard
Add kebab case
This is a first implementation of kebab case. I've only modified StringCase.swift at this time. Tests and changes to the Readme are missing.
Great work @ValentinWalter
While writing tests for kebab-case I also added some new scenarios for all-uppercase strings such as "SNAKE".snakeCased() == "snake". Which fails because snakeCased() returns "s_n_a_k_e". What do you think?