UNPKG

@botonic/react

Version:

Build Chatbots using React

11 lines (10 loc) 215 B
export const truncateText = ( text: string, maxLength: number, ellipsis = '...' ) => { if (text.length > maxLength) { return text.substring(0, maxLength - ellipsis.length) + ellipsis } return text }