Files
oh-my-opencode/src/tools/background-task/truncate-text.ts
T

5 lines
160 B
TypeScript
Raw Normal View History

export function truncateText(text: string, maxLength: number): string {
if (text.length <= maxLength) return text
return text.slice(0, maxLength) + "..."
}