UNPKG

@botonic/react

Version:

Build Chatbots using React

7 lines (6 loc) 191 B
export const truncateText = (text, maxLength, ellipsis = '...') => { if (text.length > maxLength) { return text.substring(0, maxLength - ellipsis.length) + ellipsis } return text }