Camelize hard #union #recursion

by Denis @denchiklut

Take the Challenge    简体中文

Implement Camelize which converts object from snake_case to to camelCase ```ts Camelize<{ some_prop: string, prop: { another_prop: string }, array: [{ snake_case: string }] }> // expected to be // { // someProp: string, // prop: { anotherProp: string }, // array: [{ snakeCase: string }] // } ```
Back Share your Solutions Check out Solutions