in src/exporters/javascript.ts [140:142]
function toCamelCase(str: string): string { return str.replace(/_([a-z])/g, (k) => k[1].toUpperCase()); }