UNPKG

@redocly/theme

Version:

Shared UI components lib

15 lines 404 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.trimText = trimText; function trimText(text, maxLength = 150) { if (typeof text === 'string') { if (text.length <= maxLength) { return text; } else return `${text.slice(0, maxLength)}...`; } else return text; } //# sourceMappingURL=text-trimmer.js.map