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