Genese complexity report

<- index.d.ts
Methods : 1
Complexity index : 2.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
isInteractive Complexity Index 2.4 Cyclomatic complexity 1
                            
                                
            
            
            /**
            Check if stdout or stderr is [interactive](https://unix.stackexchange.com/a/43389/7678).
            
            It checks that the stream is [TTY](https://jameshfisher.com/2017/12/09/what-is-a-tty/), not a dumb terminal, and not running in a CI.
            
            This can be useful to decide whether to present interactive UI or animations in the terminal.
            
            @example
            ```
            import isInteractive = require('is-interactive');
            
            isInteractive();
            //=> true
            ```
            */
            declare function isInteractive(options?: isInteractive.Options): boolean; // ------------------------------------------------------------------- +2.4 Complexity index (+0.4 atomic, +2 recursivity)