aboutsummaryrefslogtreecommitdiff
path: root/src/utils/string.ts
blob: 0b49114507c93ba2b31bf4852cbefb636bcefb47 (plain)
1
2
export const truncate = (text: string, maxLength = 50) =>
  text.length > maxLength ? `${text.slice(0, maxLength - 3)}...` : text;