aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Utility/string.ts
blob: 8cfc4ee5d7a9af0841f85a42295f3e4a70c7627e (plain) (blame)
1
2
export const abbreviate = (title: string, maxLength: number) =>
	title.length > maxLength ? `${title.slice(0, maxLength)}...` : title;