multiplex/multiplex.js

View on GitHub
src/lib/linq/skip.js

Summary

Maintainability
A
1 hr
Test Coverage

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

export default function skipIterator(source, count) {
    assertNotNull(source);
    assertType(count, Number);
    count = Math.max(count, 0);

Severity: Minor
Found in src/lib/linq/skip.js - About 1 hr to fix

    There are no issues that match your filters.

    Category
    Status