mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-12-02 18:13:13 +00:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
export function truncate(str: string, n: number) {
|
|
// slices long strings and ends with ...
|
|
return str.length > n ? str.slice(0, n - 1) + '...' : str;
|
|
}
|