Code coverage report for src/rest.js

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

All files » src/ » rest.js
1 2 3 4 5 6 7 8 9      1 16        
import slice from './slice';
 
 
function rest(xs, n=1) {
    return slice(xs, n);
}
 
export default rest;