Showing 4 of 4 total issues
Function generateRequestLog
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
function generateRequestLog(ip, requestContext, handleRule) {
var headers = requestContext.headers
var queryParams = requestContext.query
var headerParams = {}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function generateRequestLog
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
function generateRequestLog(ip, requestContext, handleRule) {
var headers = requestContext.headers
var queryParams = requestContext.query
var headerParams = {}
Function trimString
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function trimString(str) {
var whitespace = ' \n\r\t\f\x0b\xa0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000'
for (var i = 0, len = str.length; i < len; i++) {
if (whitespace.indexOf(str.charAt(i)) === -1) {
str = str.substring(i)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function parseCurlToRequest
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function parseCurlToRequest(curlStr) {
var argvObj = yargsParser(curlStr)
if (!argvObj._.length || argvObj._[0] !== 'curl') {
throw new Error('curl')
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"