uccser/cs-field-guide

View on GitHub
csfieldguide/static/interactives/lzss-compression/js/lzss-algorithm.js

Summary

Maintainability
C
1 day
Test Coverage

Function compressText has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
Open

function compressText(message) {
  message = message.split('');

  for (var i = 0; i < message.length; i++) {
    message[i] = message[i].replace(/[\r\n]+/g, newlineCharacter);

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 compressText has 61 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function compressText(message) {
  message = message.split('');

  for (var i = 0; i < message.length; i++) {
    message[i] = message[i].replace(/[\r\n]+/g, newlineCharacter);

Avoid deeply nested control flow statements.
Open

          if (nextSearchCharacter == newlineCharacter) {
            break
          }
Severity: Major
Found in csfieldguide/static/interactives/lzss-compression/js/lzss-algorithm.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

          if (nextMessageCharacter == nextSearchCharacter) {
            currentMatchLength += 1;
          } else {
            break;
          }
Severity: Major
Found in csfieldguide/static/interactives/lzss-compression/js/lzss-algorithm.js - About 45 mins to fix

There are no issues that match your filters.

Category
Status