@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
9 lines (8 loc) • 330 B
JavaScript
export const truncateString = (text, charsToKeep = 20, ellipsis = '...') => {
if (!text || text.length <= charsToKeep * 2) {
return text;
}
const beginning = text.substring(0, charsToKeep);
const ending = text.substring(text.length - charsToKeep);
return `${beginning}${ellipsis}${ending}`;
};