marcellodesales/istanbul-cobertura-badger

View on GitHub
lib/downloader.js

Summary

Maintainability
B
6 hrs
Test Coverage

Function downloader has 62 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function downloader(url, saveAtPath, callback) {
  // Handle the parameter errors
  if (!url || !saveAtPath) {
    return callback(new Error("You need to provide the URL and the location to save the file!"));
  }
Severity: Major
Found in lib/downloader.js - About 2 hrs to fix

    Function gettingStats has 46 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      fs.stat(dirToSave, function gettingStats(err) {
        if (err) {
          return callback(new Error("The path '" + dirToSave + "' does NOT exist!"));
        }
    
    
    Severity: Minor
    Found in lib/downloader.js - About 1 hr to fix

      Function downloader has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

      function downloader(url, saveAtPath, callback) {
        // Handle the parameter errors
        if (!url || !saveAtPath) {
          return callback(new Error("You need to provide the URL and the location to save the file!"));
        }
      Severity: Minor
      Found in lib/downloader.js - About 1 hr 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 requestHandler has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          var req = httpClient.get(url, function requestHandler(res) {
            if (res.statusCode === 404) {
              return callback(new Error("The resource at the given URL " + url + " does NOT exist"));
            }
      
      
      Severity: Minor
      Found in lib/downloader.js - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status