Title returns the string with the first character of each word in upper case.
(s string)
| 8 | |
| 9 | // Title returns the string with the first character of each word in upper case. |
| 10 | func Title(s string) string { |
| 11 | return cases.Title(language.Und, cases.NoLower).String(s) |
| 12 | } |
| 13 | |
| 14 | // findKey finds the given key in the endpoint expression and returns the |
| 15 | // transport element name and the position (header, query, cookie, or body for |
no test coverage detected