7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
export default function twuiCamelToNormalCase(str: string) {
|
|
return str
|
|
.replace(/([A-Z])/g, " $1")
|
|
.trim()
|
|
.replace(/\b\w/g, (char) => char.toUpperCase());
|
|
}
|