isLower returns true if the character is considered a lower case character when transforming word into CamelCase.
(r rune)
| 374 | // isLower returns true if the character is considered a lower case character |
| 375 | // when transforming word into CamelCase. |
| 376 | func isLower(r rune) bool { |
| 377 | return unicode.IsDigit(r) || unicode.IsLower(r) |
| 378 | } |
| 379 | |
| 380 | // validIdentifier returns true if the rune is a letter or number |
| 381 | func validIdentifier(r rune) bool { |
no outgoing calls
no test coverage detected