Code coverage report for src/first.js

Statements: 100% (16 / 16)      Branches: 100% (6 / 6)      Functions: 100% (1 / 1)      Lines: 100% (4 / 4)      Ignored: 4 statements, 2 branches     

All files » src/ » first.js
1 2 3 4 5 6 7 81 10 10          
function first(xs) {
    for (let x of xs) {
        return x;
    }
}
 
export default first;