UNPKG

@botonic/react

Version:

Build Chatbots using React

7 lines 239 B
export const truncateText = (text, maxLength, ellipsis = '...') => { if (text.length > maxLength) { return text.substring(0, maxLength - ellipsis.length) + ellipsis; } return text; }; //# sourceMappingURL=strings.js.map