• Truncates a string up to a specified length

    Example

    truncate('boomerang', 7); // 'boom...'
    

    Example

    truncate('boomerang', 7, '....'); // 'boo....'
    

    Parameters

    • str: string
    • num: number
    • Optional truncateString: string = "..."

    Returns string

Generated using TypeDoc