Converts string to pascal case.
string
The string to convert.
Returns the pascal cased string.
toPascalCase('Hello, world!')// => 'HelloWorld' Copy
toPascalCase('Hello, world!')// => 'HelloWorld'
Converts
stringto pascal case.