UNPKG

@buka/nestjs-config

Version:
8 lines (7 loc) 177 B
import { camelCase } from 'change-case-all'; export function toCamelCase(str) { return str .split('.') .map((word) => camelCase(word)) .join('.'); }