UNPKG

@kv-systems/ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

6 lines (5 loc) 214 B
export function camelize(str: string): string { return str .replace(/(-|_|\.|\s)+(.)?/g, (_match, _separator, chr) => (chr ? chr.toUpperCase() : '')) .replace(/^([A-Z])/, match => match.toLowerCase()); }