Code coverage report for src/invoke.js

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

All files » src/ » invoke.js
1 2 3 4 5 6 7 82 2 4          
function invoke(xs, fnName, ...args) {
    for (let x of xs) {
        x[fnName](...args);
    }
}
 
export default invoke;