mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
15 lines
380 B
Go
15 lines
380 B
Go
|
// Copyright (c) 2017, A. Stoewer <adrian.stoewer@rz.ifi.lmu.de>
|
||
|
// All rights reserved.
|
||
|
|
||
|
package strcase
|
||
|
|
||
|
// KebabCase converts a string into kebab case.
|
||
|
func KebabCase(s string) string {
|
||
|
return delimiterCase(s, '-', false)
|
||
|
}
|
||
|
|
||
|
// UpperKebabCase converts a string into kebab case with capital letters.
|
||
|
func UpperKebabCase(s string) string {
|
||
|
return delimiterCase(s, '-', true)
|
||
|
}
|