ivmartel/dwv

View on GitHub
src/utils/array.js

Summary

Maintainability
C
7 hrs
Test Coverage

Function parseMultipart has 66 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function parseMultipart(arr) {
  const u8Array = new Uint8Array(arr);

  const parts = [];
  // check input
Severity: Major
Found in src/utils/array.js - About 2 hrs to fix

    Function parseMultipart has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

    export function parseMultipart(arr) {
      const u8Array = new Uint8Array(arr);
    
      const parts = [];
      // check input
    Severity: Minor
    Found in src/utils/array.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 buildMultipart has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function buildMultipart(parts, boundary) {
      const lineBreak = '\r\n';
      // build headers and calculate size
      let partsSize = 0;
      const headers = [];
    Severity: Minor
    Found in src/utils/array.js - About 1 hr to fix

      Function buildMultipart has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

      export function buildMultipart(parts, boundary) {
        const lineBreak = '\r\n';
        // build headers and calculate size
        let partsSize = 0;
        const headers = [];
      Severity: Minor
      Found in src/utils/array.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

      Function arrayContains has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      export function arrayContains(arr0, arr1) {
        // check input
        if (arr0 === null ||
          arr1 === null ||
          typeof arr0 === 'undefined' ||
      Severity: Minor
      Found in src/utils/array.js - About 35 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

      There are no issues that match your filters.

      Category
      Status