Files
documenso/apps/remix/app/utils/truncate-title.ts
2025-02-13 14:10:38 +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}`;
};