2018-10-05 22:02:55 +02:00
|
|
|
export function camelCaseToCapitalize (str = '') {
|
2018-10-05 04:26:41 +02:00
|
|
|
return str
|
2020-08-14 13:48:42 +02:00
|
|
|
.replace(/([A-Z])/ug, ' $1')
|
2020-08-18 18:36:45 +02:00
|
|
|
.replace(/^./u, (s) => s.toUpperCase())
|
2018-10-05 04:26:41 +02:00
|
|
|
}
|