Genese complexity report

<- index.d.ts
Methods : 1
Complexity index : 3.6
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
multimatch Complexity Index 3.6 Cyclomatic complexity 1
                            
                                
            
            
            /**
            Extends [`minimatch.match()`](https://github.com/isaacs/minimatch#minimatchmatchlist-pattern-options) with support for multiple patterns.
            
            @param paths - Paths to match against.
            @param patterns - Globbing patterns to use. For example: `['*', '!cake']`. See supported [`minimatch` patterns](https://github.com/isaacs/minimatch#usage).
            @returns The matching paths.
            
            @example
            ```
            import multimatch = require('multimatch');
            
            multimatch(['unicorn', 'cake', 'rainbows'], ['*', '!cake']);
            //=> ['unicorn', 'rainbows']
            ```
            */
            declare function multimatch( // -------------------------------------------------------------------------------------------------------------------------------------- +2.1 Complexity index (+0.1 atomic, +2 recursivity)
            	paths: string | string[], // ---------------------------------------------------------------------------------------------------------------------------------------- +0.5 Complexity index (+0.5 atomic)
            	patterns: string | string[], // ------------------------------------------------------------------------------------------------------------------------------------- +0.5 Complexity index (+0.5 atomic)
            	options?: multimatch.Options // ------------------------------------------------------------------------------------------------------------------------------------- +0.3 Complexity index (+0.3 atomic)
            ): string[]; // ------------------------------------------------------------------------------------------------------------------------------------------------------ +0.2 Complexity index (+0.2 atomic)