UNPKG

@amxdev/truncate-text

Version:

Truncate long text to a maximum length with ellipsis.

3 lines 150 B
export function truncateText(text: string, maxLength: number): string { return text.length <= maxLength ? text : text.slice(0, maxLength) + '...'; }