UNPKG

@cranberry-money/shared-utils

Version:

Shared utility functions for Blueberry platform

6 lines 191 B
export function truncateText(text, maxLength = 30) { if (text.length <= maxLength) return text; return `${text.substring(0, maxLength)}...`; } //# sourceMappingURL=text.js.map