All files / workspace/modules defaultParameters.js

100% Statements 17/17
100% Branches 4/4
100% Functions 1/1
100% Lines 17/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 171x 48x 35x 35x 35x 35x 13x 13x 13x 13x 13x 48x 1x 1x 1x 1x 1x
const defaultParameters=function(self,parameters){
    if (typeof parameters !== 'object') {
        //true because there are parmas to work with,
        //but the default Object handler can't use them
        return true;
    }
 
    Object.assign(self,parameters);
 
    //false because the params have been handled and should need no further work.
    return false;
}
 
export {
    defaultParameters as default,
    defaultParameters
}