The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
at master 3 lines 143 B view raw
1export const truncate = (str: string, length: number) => { 2 return str.length > length ? str.slice(0, Math.max(0, length)) + "…" : str; 3};