10 lines
171 B
Go
10 lines
171 B
Go
package stringcase
|
|
|
|
func KebabCase(s string) string {
|
|
return delimiterCase(s, '-', false)
|
|
}
|
|
|
|
func UpperKebabCase(s string) string {
|
|
return delimiterCase(s, '-', true)
|
|
}
|