// Copyright (c) 2017, A. Stoewer // All rights reserved. package strcase // KebabCase converts a string into kebab case. func KebabCase(s string) string { return lowerDelimiterCase(s, '-') }