// Copyright (c) 2017, A. Stoewer <adrian.stoewer@rz.ifi.lmu.de>
// All rights reserved.

package strcase

// KebabCase converts a string into kebab case.
func ( string) string {
	return delimiterCase(, '-', false)
}

// UpperKebabCase converts a string into kebab case with capital letters.
func ( string) string {
	return delimiterCase(, '-', true)
}