Files
yaak-mountain-loop/apps/yaak-client/lib/truncate.ts
2026-03-06 09:23:19 -08:00

5 lines
140 B
TypeScript

export function truncate(text: string, len: number): string {
if (text.length <= len) return text;
return `${text.slice(0, len)}`;
}