5 lines
160 B
TypeScript
5 lines
160 B
TypeScript
|
|
export function truncateText(text: string, maxLength: number): string {
|
||
|
|
if (text.length <= maxLength) return text
|
||
|
|
return text.slice(0, maxLength) + "..."
|
||
|
|
}
|