UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

6 lines (5 loc) 166 B
export function toCamelCase(str: string): any { return str.replace(/([-_][a-z0-9])/ig, ($1: string) => { return $1.toUpperCase().replace('-', ''); }); }