nosignal-shell/utils/strings.ts
2 * r + 2 * t b4aca729dd bar
2025-01-12 18:00:54 +11:00

1 line
110 B
TypeScript

export const ellipsize = (str: string, len = 40) => (str.length > len ? `${str.slice(0, len - 1)}` : str);