// KebabCase converts a string into kebab case. func KebabCase(s string) string { … } // UpperKebabCase converts a string into kebab case with capital letters. func UpperKebabCase(s string) string { … }
// KebabCase converts a string into kebab case. func KebabCase(s string) string { … } // UpperKebabCase converts a string into kebab case with capital letters. func UpperKebabCase(s string) string { … }