Camelize
@typehero
Last updated 3 months ago
HARD
Implement Camelize which converts object from snake_case to to camelCase
Camelize<{ some_prop: string, prop: { another_prop: string }, array: [{ snake_case: string }] }> // expected to be // { // someProp: string, // prop: { anotherProp: string }, // array: [{ snakeCase: string }] // }
This challenge was ported from Type Challenges and was authored by denchiklut
More Challenges
Loading...
Loading...