codec-bytes/base32

View on GitHub

Showing 11 of 20 total issues

Function _decode has a Cognitive Complexity of 58 (exceeds 5 allowed). Consider refactoring.
Open

export default function* _decode(bytes, options = DEFAULT_OPTIONS) {
    if (options.variant) {
        if (Object.hasOwn(variants, options.variant)) {
            options = variants[options.variant];
        } else {
Severity: Minor
Found in src/_decode.js - About 1 day 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 _encode has a Cognitive Complexity of 58 (exceeds 5 allowed). Consider refactoring.
Open

export default function* _encode(string, options = DEFAULT_OPTIONS) {
    if (options.variant) {
        if (Object.hasOwn(variants, options.variant)) {
            options = variants[options.variant];
        } else {
Severity: Minor
Found in src/_encode.js - About 1 day 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 _encode has 117 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default function* _encode(string, options = DEFAULT_OPTIONS) {
    if (options.variant) {
        if (Object.hasOwn(variants, options.variant)) {
            options = variants[options.variant];
        } else {
Severity: Major
Found in src/_encode.js - About 4 hrs to fix

    Function _decode has 108 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export default function* _decode(bytes, options = DEFAULT_OPTIONS) {
        if (options.variant) {
            if (Object.hasOwn(variants, options.variant)) {
                options = variants[options.variant];
            } else {
    Severity: Major
    Found in src/_decode.js - About 4 hrs to fix

      Function char8tobyte5 has 9 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      export default function* char8tobyte5(index, a, b, c, d, e, f, g, h) {
      Severity: Major
      Found in src/char8tobyte5.js - About 1 hr to fix

        Function char7tobyte4 has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        export default function* char7tobyte4(index, a, b, c, d, e, f, g) {
        Severity: Major
        Found in src/char7tobyte4.js - About 1 hr to fix

          Function byte5tochar8 has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          export default function* byte5tochar8(alphabet, a, b, c, d, e) {
          Severity: Minor
          Found in src/byte5tochar8.js - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                if (digits[i] !== padding) {
                                    const reason = `incorrect padding end in ${digits.join('')}`;
                                    const position = {start: start + i, end: start + i + 1};
                                    throw new Base32EncodeError(reason, string, position);
                                }
            Severity: Major
            Found in src/_encode.js - About 45 mins to fix

              Function char5tobyte3 has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              export default function* char5tobyte3(index, a, b, c, d, e) {
              Severity: Minor
              Found in src/char5tobyte3.js - About 45 mins to fix

                Function byte4tochar7 has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                export default function* byte4tochar7(alphabet, a, b, c, d) {
                Severity: Minor
                Found in src/byte4tochar7.js - About 35 mins to fix

                  Function char4tobyte2 has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                  export default function* char4tobyte2(index, a, b, c, d) {
                  Severity: Minor
                  Found in src/char4tobyte2.js - About 35 mins to fix
                    Severity
                    Category
                    Status
                    Source
                    Language