LowerFirst converts the first rune of str to lowercase.
(str string)
| 86 | |
| 87 | // LowerFirst converts the first rune of str to lowercase. |
| 88 | func (c Caps) LowerFirst(str string) string { |
| 89 | return token.LowerFirst(c.caser, str) |
| 90 | } |
| 91 | |
| 92 | // Without numbers returns the string with all numeric runes removed. |
| 93 | // |