blob: 6ec5888abbf93dffd6fcfc7b86617df9998143f0 [file] [log] [blame]
TheCodedProfb5e9d552023-01-29 15:43:26 -05001export default (str: string, max: number): string => {
2 if (str.length <= max) return str;
3 return str.slice(0, max - 3) + "...";
4}