Solución
solution.tsTypeScript
export function snakeToCamel(str: string): string {
return str.split("_").map((value, index) => {
if (index === 0) return value
return value[0].toUpperCase().concat(value.substring(1))
}).join("")
}0respuestas