Showing 70 of 92 total issues

Avoid too many return statements within this function.
Open

        return false
Severity: Major
Found in src/object/equals.ts - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

      return false
    Severity: Major
    Found in src/core/equals.ts - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return newClone
      Severity: Major
      Found in src/core/clone.ts - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

            return true
        Severity: Major
        Found in src/object/equals.ts - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return false
          Severity: Major
          Found in src/object/equals.ts - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                  return false
            Severity: Major
            Found in src/object/equals.ts - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return false
              Severity: Major
              Found in src/object/equals.ts - About 30 mins to fix

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

                export default function sortObjectsInArrayByProperty(
                  obj: Record<PropertyKey, any>,
                  property: string,
                  asc: boolean = true,
                  ignoreCase: boolean = true
                Severity: Minor
                Found in src/sort/sortObjectsInArrayByProperty.ts - 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 stringToNumber has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export function stringToNumber(value: string): number {
                  value = value.replace(reTrim, '')
                  const isBinary = reIsBinary.test(value)
                
                  return isBinary || reIsOctal.test(value)
                Severity: Minor
                Found in src/to/toNumber.ts - 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 removeConsecutiveDuplicates has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export function removeConsecutiveDuplicates(str: string, els: string | string[] = []): string {
                  const map: string[] = []
                  const charsArray: string[] = typeof els === 'string' ? [els] : els
                  const seekElements: boolean = charsArray.length > 0
                  const ss = str.split('')
                Severity: Minor
                Found in src/string/replace.ts - 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