dfcreative/parse-attr

View on GitHub

Showing 10 of 10 total issues

Function parseValue has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

function parseValue(str){
    var v;
    // console.log('parse', str)
    if (/true/i.test(str)) {
        return true;
Severity: Minor
Found in parse.js - About 1 hr to fix

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 parseTyped has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

function parseTyped(value, type){
    var res;
    // console.log('parse typed', value, type)
    if (isArray(type)) {
        res = parseList(value);
Severity: Minor
Found in parse.js - About 55 mins to fix

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

Avoid too many return statements within this function.
Open

        return v;
Severity: Major
Found in parse.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

        return str;
    Severity: Major
    Found in parse.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

              return NaN;
      Severity: Major
      Found in parse.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                    return JSON.parse(str);
        Severity: Major
        Found in parse.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return parseList(str);
          Severity: Major
          Found in parse.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return str;
            Severity: Major
            Found in parse.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return el.toString();
              Severity: Major
              Found in stringify.js - About 30 mins to fix

                Function stringify has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                module.exports = function stringify(el){
                    if (!el) {
                        return '' + el;
                    } if (isArray(el)){
                        //return comma-separated array
                Severity: Minor
                Found in stringify.js - About 25 mins to fix

                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

                Severity
                Category
                Status
                Source
                Language