export function toCamelCase(value: string): string { return value.replace(/_([a-z])/g, (match, $1) => $1.toUpperCase()); }