UNPKG

@amxdev/truncate-text

Version:

Truncate long text to a maximum length with ellipsis.

7 lines (6 loc) 236 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.truncateText = truncateText; function truncateText(text, maxLength) { return text.length <= maxLength ? text : text.slice(0, maxLength) + '...'; }