Convert text to PascalCase, optionally replacing individual words using customWords.
text
customWords
Optional
toPascalCase('hello world'); // 'HelloWorld'toPascalCase('foo-bar', { bar: 'BAR' }); // 'FooBAR' Copy
toPascalCase('hello world'); // 'HelloWorld'toPascalCase('foo-bar', { bar: 'BAR' }); // 'FooBAR'
Convert
textto PascalCase, optionally replacing individual words usingcustomWords.