zhangnaisong
2023-08-05 24d66c8d82b628a06e93dbb1abfea2049b3d45ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
declare namespace cliTruncate {
    interface Options {
        /**
        Position to truncate the string.
 
        @default 'end'
        */
        readonly position?: 'start' | 'middle' | 'end';
 
        /**
        Add a space between the text and the ellipsis.
 
        @default false
 
        @example
        ```
        cliTruncate('unicorns', 5, {position: 'end', space: true});
        //=> 'uni …'
 
        cliTruncate('unicorns', 5, {position: 'end', space: false});
        //=> 'unic…'
 
        cliTruncate('unicorns', 6, {position: 'start', space: true});
        //=> '… orns'
 
        cliTruncate('unicorns', 7, {position: 'middle', space: true});
        //=> 'uni … s'
        ```
        */
        readonly space?: boolean;
 
        /**
        Truncate the string from a whitespace if it is within 3 characters from the actual breaking point.
 
        @default false
 
        @example
        ```
        cliTruncate('unicorns rainbow dragons', 20, {position: 'start', preferTruncationOnSpace: true});
        //=> '…rainbow dragons'
 
        cliTruncate('unicorns rainbow dragons', 20, {position: 'middle', preferTruncationOnSpace: true});
        //=> 'unicorns…dragons'
 
        cliTruncate('unicorns rainbow dragons', 6, {position: 'end', preferTruncationOnSpace: true});
        //=> 'unico…'
        ````
        */
        readonly preferTruncationOnSpace?: boolean;
    }
}
 
/**
Truncate a string to a specific width in the terminal.
 
@param text - Text to truncate.
@param columns - Columns to occupy in the terminal.
 
@example
```
import cliTruncate = require('cli-truncate');
 
cliTruncate('unicorn', 4);
//=> 'uni…'
 
// Truncate at different positions
cliTruncate('unicorn', 4, {position: 'start'});
//=> '…orn'
 
cliTruncate('unicorn', 4, {position: 'middle'});
//=> 'un…n'
 
cliTruncate('\u001B[31municorn\u001B[39m', 4);
//=> '\u001B[31muni\u001B[39m…'
 
// Truncate Unicode surrogate pairs
cliTruncate('uni\uD83C\uDE00corn', 5);
//=> 'uni\uD83C\uDE00…'
 
// Truncate fullwidth characters
cliTruncate('안녕하세요', 3);
//=> '안…'
 
// Truncate the paragraph to the terminal width
const paragraph = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.';
cliTruncate(paragraph, process.stdout.columns));
//=> 'Lorem ipsum dolor sit amet, consectetuer adipiscing…'
```
*/
declare function cliTruncate(
    text: string,
    columns: number,
    options?: cliTruncate.Options
): string;
 
export = cliTruncate;