RubyLouvre/avalon

View on GitHub
src/seed/lang.modern.js

Summary

Maintainability
C
1 day
Test Coverage

Function mix has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

avalon.mix = avalon.fn.mix = function() {
    var options, name, src, copy, copyIsArray, clone,
        target = arguments[0] || {},
        i = 1,
        length = arguments.length,
Severity: Minor
Found in src/seed/lang.modern.js - About 6 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 each has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

avalon.each = function(obj, fn) {
    if (obj) { //排除null, undefined
        var i = 0
        if (isArrayLike(obj)) {
            for (var n = obj.length; i < n; i++) {
Severity: Minor
Found in src/seed/lang.modern.js - About 2 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 mix has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

avalon.mix = avalon.fn.mix = function() {
    var options, name, src, copy, copyIsArray, clone,
        target = arguments[0] || {},
        i = 1,
        length = arguments.length,
Severity: Minor
Found in src/seed/lang.modern.js - About 1 hr to fix

    Avoid deeply nested control flow statements.
    Open

                        if (copyIsArray) {
                            copyIsArray = false
                            clone = src && Array.isArray(src) ? src : []
    
                        } else {
    Severity: Major
    Found in src/seed/lang.modern.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                      } else if (copy !== void 0) {
                          target[name] = copy
                      }
      Severity: Major
      Found in src/seed/lang.modern.js - About 45 mins to fix

        Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
        Open

        import { avalon, ohasOwn, inspect } from './core'
        Severity: Minor
        Found in src/seed/lang.modern.js by eslint

        For more information visit Source: http://eslint.org/docs/rules/

        There are no issues that match your filters.

        Category
        Status