# Kebab *Str
Kebab
returns a new lowercased instance of Str with all spaces and underscores replaced with hyphens.
# Signature
func (s *Str) Kebab() *Str
# Examples
str.New("").Kebab().String()
// ""
str.New("go go go").Kebab().String()
// "go-go-go"
str.New("GoLang").Kebab().String()
// "go-lang"
str.New("goLang").Kebab().String()
// "go-lang"
str.New("✨🔥✨🔥✨").Kebab().String()
// "✨🔥✨🔥✨"
str.New("✨ 🔥 ✨ 🔥 ✨").Kebab().String()
// "✨-🔥-✨-🔥-✨"