• Given a string, it returns the PascalCase form of it. Eg: "pascal_case" returns "PascalCase".

    Parameters

    • str: string

      String to PascalCase.

    Returns string

    String with all the first letter capitalized with no spaces.