mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
07b05616a0
Bumps [k8s.io/kubernetes](https://github.com/kubernetes/kubernetes) from 1.26.2 to 1.27.2. - [Release notes](https://github.com/kubernetes/kubernetes/releases) - [Commits](https://github.com/kubernetes/kubernetes/compare/v1.26.2...v1.27.2) --- updated-dependencies: - dependency-name: k8s.io/kubernetes dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
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)
|
|
}
|