Files
documenso/apps/remix/app/helpers/truncate-title.ts
Mythie f7a98180d7 wip
2025-01-30 14:54:15 +11:00

11 lines
258 B
TypeScript

export const truncateTitle = (title: string, maxLength: number = 16) => {
if (title.length <= maxLength) {
return title;
}
const start = title.slice(0, maxLength / 2);
const end = title.slice(-maxLength / 2);
return `${start}.....${end}`;
};