diff options
Diffstat (limited to 'utils/strings.ts')
| -rw-r--r-- | utils/strings.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/strings.ts b/utils/strings.ts deleted file mode 100644 index e5bc43e..0000000 --- a/utils/strings.ts +++ /dev/null @@ -1 +0,0 @@ -export const ellipsize = (str: string, len = 40) => (str.length > len ? `${str.slice(0, len - 1)}…` : str); |