Converts a camelCase string to a PascalCase string (makes first letter lowercase)
camelCase
PascalCase
camelToPascal('helloWorld'); // HelloWorld Copy
camelToPascal('helloWorld'); // HelloWorld
Converts a
camelCase
string to aPascalCase
string (makes first letter lowercase)Usage