Function pascalToCamel

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

    Parameters

    • str: string

    Returns string

    camelToPascal('HelloWorld'); // helloWorld