codec-bytes/base64

View on GitHub

Showing 5 of 13 total issues

Function _encode has a Cognitive Complexity of 75 (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 _decode has a Cognitive Complexity of 39 (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 5 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 _encode has 136 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 5 hrs to fix

    Function _decode has 70 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 2 hrs to fix

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

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