Showing 6 of 6 total issues
Function merge
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function* merge(compare, ...iterables) {
const x = [];
for (const [order, it] of enumerate(map(iter, iterables))) {
const rv = it.next();
Function merge
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
export default function* merge(compare, ...iterables) {
const x = [];
for (const [order, it] of enumerate(map(iter, iterables))) {
const rv = it.next();
- Read upRead up
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 nsmallest
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function nsmallest(compare, n, iterable) {
if (n === 1) {
const sentinel = {};
const result = min(compare, iterable, sentinel);
Function nsmallest
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
export default function nsmallest(compare, n, iterable) {
if (n === 1) {
const sentinel = {};
const result = min(compare, iterable, sentinel);
- Read upRead up
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 siftup
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
export default function siftup(compare, a, i, j, k) {
Function siftdown
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
export default function siftdown(compare, a, i, j, k) {