Genese complexity report

<- punycode.d.ts
Methods : 4
Complexity index : 1.6
Cyclomatic complexity : 4
Cognitive complexity
100 % Correct 4/4
0 % Warning 0/4 (threshold : 10)
0 % Error 0/4 (threshold : 20)
Cyclomatic complexity
100 % Correct 4/4
0 % Warning 0/4 (threshold : 5)
0 % Error 0/4 (threshold : 10)
Methods of punycode.d.ts
decode Complexity Index 0.4 Cyclomatic complexity 1
                            
                                
            
                /**
                 * @deprecated since v7.0.0
                 * The version of the punycode module bundled in Node.js is being deprecated.
                 * In a future major version of Node.js this module will be removed.
                 * Users currently depending on the punycode module should switch to using
                 * the userland-provided Punycode.js module instead.
                 */
                function decode(string: string): string; // -------------------------------------------- +0.4 Complexity index (+0.4 atomic)
            
                            
                        
encode Complexity Index 0.4 Cyclomatic complexity 1
                            
                                
                
                /**
                 * @deprecated since v7.0.0
                 * The version of the punycode module bundled in Node.js is being deprecated.
                 * In a future major version of Node.js this module will be removed.
                 * Users currently depending on the punycode module should switch to using
                 * the userland-provided Punycode.js module instead.
                 */
                function encode(string: string): string; // -------------------------------------------- +0.4 Complexity index (+0.4 atomic)
            
                            
                        
toUnicode Complexity Index 0.4 Cyclomatic complexity 1
                            
                                
                
                /**
                 * @deprecated since v7.0.0
                 * The version of the punycode module bundled in Node.js is being deprecated.
                 * In a future major version of Node.js this module will be removed.
                 * Users currently depending on the punycode module should switch to using
                 * the userland-provided Punycode.js module instead.
                 */
                function toUnicode(domain: string): string; // ----------------------------------------- +0.4 Complexity index (+0.4 atomic)
            
                            
                        
toASCII Complexity Index 0.4 Cyclomatic complexity 1
                            
                                
                
                /**
                 * @deprecated since v7.0.0
                 * The version of the punycode module bundled in Node.js is being deprecated.
                 * In a future major version of Node.js this module will be removed.
                 * Users currently depending on the punycode module should switch to using
                 * the userland-provided Punycode.js module instead.
                 */
                function toASCII(domain: string): string; // ------------------------------------------- +0.4 Complexity index (+0.4 atomic)