Code coverage report for src/none.js

Statements: 100% (6 / 6)      Branches: 100% (4 / 4)      Functions: 100% (2 / 2)      Lines: 100% (3 / 3)      Ignored: 1 branch     

All files » src/ » none.js
1 2 3 4 5 6 7 8 9      1 6        
import some from './some';
 
 
function none(xs, iteratee, thisArg) {
    return !some(xs, iteratee, thisArg);
}
 
export default none;