mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-09 23:48:36 +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;
|
|
|
|
} |