Function camelCaseToWords

  • Converts a camelCase string into a space-separated lowercase string.

    This function inserts spaces before each uppercase letter in the string (except the first one) and converts the entire string to lowercase.

    Returns

    A space-separated, lowercase version of the input string.

    Parameters

    • str: string

      The camelCase string to convert.

    Returns string

Generated using TypeDoc