mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
11 lines
186 B
Go
11 lines
186 B
Go
package piperutils
|
|
|
|
import (
|
|
"golang.org/x/text/cases"
|
|
"golang.org/x/text/language"
|
|
)
|
|
|
|
func Title(in string) string {
|
|
return cases.Title(language.English, cases.NoLower).String(in)
|
|
}
|