UNPKG
coreui-angular-ex
Version:
latest (4.5.14)
4.5.14
CoreUI Components Library for Angular
coreui.io/angular/
coreui/coreui-angular
coreui-angular-ex
/
projects
/
coreui-icons-angular
/
src
/
lib
/
icon
/
icon.utils.ts
6 lines
(5 loc)
•
166 B
text/typescript
View Raw
1
2
3
4
5
6
export
function
toCamelCase
(
str
:
string
):
any
{
return
str.
replace
(
/([-_][a-z0-9])/ig
,
(
$1:
string
) =>
{
return
$1.
toUpperCase
().
replace
(
'-'
,
''
); }); }