eriwen/javascript-stacktrace

View on GitHub

Showing 9 of 9 total issues

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

}(this, function StackTrace(ErrorStackParser, StackGenerator, StackTraceGPS) {
    var _options = {
        filter: function(stackframe) {
            // Filter out stackframes for this library by default
            return (stackframe.functionName || '').indexOf('StackTrace$$') === -1 &&
Severity: Minor
Found in stacktrace.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 StackTrace has 131 lines of code (exceeds 25 allowed). Consider refactoring.
Open

}(this, function StackTrace(ErrorStackParser, StackGenerator, StackTraceGPS) {
    var _options = {
        filter: function(stackframe) {
            // Filter out stackframes for this library by default
            return (stackframe.functionName || '').indexOf('StackTrace$$') === -1 &&
Severity: Major
Found in stacktrace.js - About 5 hrs to fix

    Function exports has 109 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = function (config) {
        'use strict';
        if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) {
            console.log('Make sure the SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are set.');
            process.exit(1);
    Severity: Major
    Found in karma.conf.ci.js - About 4 hrs to fix

      Function filter has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          Array.prototype.filter = function(callback/*, thisArg*/) {
              if (this === void 0 || this === null) {
                  throw new TypeError('this is null or not defined');
              }
      
      
      Severity: Minor
      Found in polyfills.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 map has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          Array.prototype.map = function(callback, thisArg) {
              if (this === void 0 || this === null) {
                  throw new TypeError('this is null or not defined');
              }
              var O = Object(this);
      Severity: Minor
      Found in polyfills.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 forEach has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          Array.prototype.forEach = function(callback, thisArg) {
              var T;
              var k;
              if (this === null || this === undefined) {
                  throw new TypeError(' this is null or not defined');
      Severity: Minor
      Found in polyfills.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 StackTrace$$report has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              report: function StackTrace$$report(stackframes, url, errorMsg, requestOptions) {
                  return new Promise(function(resolve, reject) {
                      var req = new XMLHttpRequest();
                      req.onerror = reject;
                      req.onreadystatechange = function onreadystatechange() {
      Severity: Minor
      Found in stacktrace.js - About 1 hr to fix

        Function exports has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        module.exports = function(config) {
            config.set({
                basePath: '',
                frameworks: ['jasmine-ajax', 'jasmine'],
                files: [
        Severity: Minor
        Found in karma.conf.js - About 1 hr to fix

          Function bind has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              Function.prototype.bind = function(oThis) {
                  if (typeof this !== 'function') {
                      throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable');
                  }
          
          
          Severity: Minor
          Found in polyfills.js - About 25 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

          Severity
          Category
          Status
          Source
          Language