Function pascalToCamel

Converts a PascalCase string to a camelCase string (makes first letter uppercase)

camelToPascal('HelloWorld'); // helloWorld
  • Parameters

    • str: string

    Returns string