parametric-svg/js

View on GitHub

Showing 6 of 6 total issues

Function parseParametricValue has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

export default function parseParametricValue (value) {
  // Parse the value into an AST.
  let ast;
  try {ast = acorn.parse(value);}
  catch (error) {return {error};}
Severity: Minor
Found in source/utils/parse-parametric-value.js - About 2 hrs 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 namespaceParameters has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function namespaceParameters (svgRoot, namespace, prefix=null) {
  let textContent;
  // Get `<ref>` elements belonging to the `namespace`,
  let elements = Array.from(svgRoot.getElementsByTagNameNS
    ( namespace
Severity: Minor
Found in source/utils/get-parameters.js - About 1 hr to fix

    Function parametricSVG has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export default function parametricSVG (root, parameters={}) {
      let tree, svgRoot, element;
    
      if (!parameters || typeof parameters != "object") throw new TypeError("parametricSVG: "
        + "If you pass `parameters`, it must be an object."
    Severity: Minor
    Found in source/parametric-svg.js - About 1 hr to fix

      Function parseParametricValue has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export default function parseParametricValue (value) {
        // Parse the value into an AST.
        let ast;
        try {ast = acorn.parse(value);}
        catch (error) {return {error};}
      Severity: Minor
      Found in source/utils/parse-parametric-value.js - About 1 hr to fix

        Function parametricSVG has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        export default function parametricSVG (root, parameters={}) {
          let tree, svgRoot, element;
        
          if (!parameters || typeof parameters != "object") throw new TypeError("parametricSVG: "
            + "If you pass `parameters`, it must be an object."
        Severity: Minor
        Found in source/parametric-svg.js - About 45 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 {parameterNames, func};
        Severity: Major
        Found in source/utils/parse-parametric-value.js - About 30 mins to fix
          Severity
          Category
          Status
          Source
          Language