@botonic/react
Version:
Build Chatbots using React
11 lines • 377 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.truncateText = void 0;
const truncateText = (text, maxLength, ellipsis = '...') => {
if (text.length > maxLength) {
return text.substring(0, maxLength - ellipsis.length) + ellipsis;
}
return text;
};
exports.truncateText = truncateText;
//# sourceMappingURL=strings.js.map
;