mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
|
|
|
|
|
|
export function truncateText(input: string, maxLength: number) {
|
|
|
|
if (input.length > maxLength) {
|
|
return input.substring(0, maxLength) + '...'
|
|
}
|
|
|
|
return input;
|
|
|
|
} |