Fix title case transformer
This commit is contained in:
parent
ccd8d2b6b0
commit
9ca364dd0e
1 changed files with 3 additions and 1 deletions
|
@ -88,7 +88,9 @@ const titleCasePostProcessor: PostProcessorModule = {
|
|||
type: 'postProcessor',
|
||||
name: 'titleCase',
|
||||
process: (value: string) => {
|
||||
return value.charAt(0).toLocaleUpperCase() + value.slice(1).toLowerCase();
|
||||
return value.replace(/\S\S*/g, (txt) => {
|
||||
return txt.charAt(0).toLocaleUpperCase() + txt.slice(1).toLowerCase();
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue