summaryrefslogtreecommitdiff
path: root/src/utils/strings.ts
blob: df2f781caf34f2d56cab8775ecf1f78078c3971e (plain)
1
export const ellipsize = (str: string, len: number) => (str.length > len ? `${str.slice(0, len - 1)}…` : str);