• Converts a string to title case.

    Parameters

    • str: string

      the input string

    Returns string

    the title cased string

    Example

    console.log(titleCase('hello world')); // 'Hello World'
    

Generated using TypeDoc