Genese complexity report

<- index.d.ts
Methods : 1
Complexity index : 1.1
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
arrayDiffer Complexity Index 1.1 Cyclomatic complexity 1
                            
                                
            
            Create an array with values that are present in the first array but not additional ones.
            
            @param array - The array to compare against.
            @param values - The arrays with values to be excluded.
            @returns A new array of filtered values.
            
            @example
            ```
            import arrayDiffer = require('array-differ');
            
            arrayDiffer([2, 3, 4], [3, 50]);
            //=> [2, 4]
            ```
            */
            declare function arrayDiffer<ValueType>( // ------------------------------------------------------- +0.2 Complexity index (+0.2 atomic)
            	array: readonly ValueType[], // ------------------------------------------------------------------ +0.3 Complexity index (+0.3 atomic)
            	...values: (readonly ValueType[])[] // ----------------------------------------------------------- +0.4 Complexity index (+0.4 atomic)
            ): ValueType[]; // -------------------------------------------------------------------------------- +0.2 Complexity index (+0.2 atomic)