nikcorg/funcalicious

View on GitHub

Showing 10 of 19 total issues

Function filter has 55 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var filter = function filter(terms) {
    if (!Array.isArray(terms)) {
        throw new Error("filter expects an array of terms");
    }

Severity: Major
Found in lib/filter.js - About 2 hrs to fix

    Function filter has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const filter = terms => {
        if (!Array.isArray(terms)) {
            throw new Error("filter expects an array of terms");
        }
    
    
    Severity: Minor
    Found in src/filter.js - About 1 hr to fix

      Function _slicedToArray has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; })();
      Severity: Minor
      Found in lib/filter.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 tests has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          var tests = (0, _flatmap.flatmap)(terms, function (_term) {
              return Object.entries(_term).map(function (_ref) {
                  var _ref2 = _slicedToArray(_ref, 2);
      
                  var op = _ref2[0];
      Severity: Minor
      Found in lib/filter.js - About 1 hr to fix

        Function tests has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            const tests = flatmap(terms, _term => {
                return Object.entries(_term).map(([op, term]) => {
                    let test;
        
                    switch (op) {
        Severity: Minor
        Found in src/filter.js - About 1 hr to fix

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

          export const filter = terms => {
              if (!Array.isArray(terms)) {
                  throw new Error("filter expects an array of terms");
              }
          
          
          Severity: Minor
          Found in src/filter.js - About 35 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

          Function callFunction has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          var callFunction = function callFunction(fn, fixedArgs) {
              return function () {
                  for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
                      args[_key] = arguments[_key];
                  }
          Severity: Minor
          Found in lib/call.js - About 35 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

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

          var filter = function filter(terms) {
              if (!Array.isArray(terms)) {
                  throw new Error("filter expects an array of terms");
              }
          
          
          Severity: Minor
          Found in lib/filter.js - About 35 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

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

          var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
          Severity: Minor
          Found in lib/put.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

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

          var pad = function pad(input, width) {
              var padStr = arguments.length <= 2 || arguments[2] === undefined ? " " : arguments[2];
              var right = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3];
          
              var output = String(input);
          Severity: Minor
          Found in lib/pad.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