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