blob: 4ba1f7232ae382efb8d46867bb111dcd47aea956 [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) + "...";
Skyler Greyda16adf2023-03-05 10:22:12 +00004};