(str string)
| 318 | } |
| 319 | |
| 320 | func ToCamelCaseWithInitialism(str string) string { |
| 321 | return replaceInitialism(ToCamelCase(str)) |
| 322 | } |
| 323 | |
| 324 | func replaceInitialism(s string) string { |
| 325 | // These strings do not apply CamelCase |
no test coverage detected