Genese complexity report

<- index.d.ts
Methods : 1
Complexity index : 0.4
Cyclomatic complexity : 1
Cognitive complexity
100 % Correct 1/1
0 % Warning 0/1 (threshold : 10)
0 % Error 0/1 (threshold : 20)
Cyclomatic complexity
100 % Correct 1/1
0 % Warning 0/1 (threshold : 5)
0 % Error 0/1 (threshold : 10)
Methods of index.d.ts
stripAnsi Complexity Index 0.4 Cyclomatic complexity 1
                            
                                
            
            Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
            
            @example
            ```
            import stripAnsi = require('strip-ansi');
            
            stripAnsi('\u001B[4mUnicorn\u001B[0m');
            //=> 'Unicorn'
            
            stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
            //=> 'Click'
            ```
            */
            declare function stripAnsi(string: string): string; // -------------------------------------------- +0.4 Complexity index (+0.4 atomic)