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