questions/00114-hard-camelcase/README.md
Implement CamelCase<T> which converts snake_case string to camelCase.
For example
type camelCase1 = CamelCase<'hello_world_with_types'> // expected to be 'helloWorldWithTypes'
type camelCase2 = CamelCase<'HELLO_WORLD_WITH_TYPES'> // expected to be same as previous one
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/114/answer" target="_blank"></a> <a href="https://tsch.js.org/114/solutions" target="_blank"></a> <hr><h3>Related Challenges</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00612-medium-kebabcase/README.md" target="_blank"></a> <!--info-footer-end-->