jbilcke's picture
working to improve the clap format
f42b4a1
raw
history blame
No virus
167 Bytes
export function truncate(text: string, length: number): string {
const truncated = text.slice(0, length)
return `${truncated}${truncated !== text ? '...' : ''}`
}