7d78e65d0c
Add semantic versioning to all services * working * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver * 1.24 mod * go upgrade * tool * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver
13 lines
722 B
Go
13 lines
722 B
Go
// Package strcase converts strings to various cases. See the conversion table below:
|
|
// | Function | Result |
|
|
// |---------------------------------|--------------------|
|
|
// | ToSnake(s) | any_kind_of_string |
|
|
// | ToScreamingSnake(s) | ANY_KIND_OF_STRING |
|
|
// | ToKebab(s) | any-kind-of-string |
|
|
// | ToScreamingKebab(s) | ANY-KIND-OF-STRING |
|
|
// | ToDelimited(s, '.') | any.kind.of.string |
|
|
// | ToScreamingDelimited(s, '.') | ANY.KIND.OF.STRING |
|
|
// | ToCamel(s) | AnyKindOfString |
|
|
// | ToLowerCamel(s) | anyKindOfString |
|
|
package strcase
|