All files lib.js

58.82% Statements 10/17
50% Branches 4/8
50% Functions 1/2
69.23% Lines 9/13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 212x                 6x 6x 42x 36x 36x   6x       2x 2x
var _extends = Object.assign || function(target) {
        for (var i = 1; i < arguments.length; i++) {
            var source = arguments[i];
            for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } }
        }
        return target;
    };
 
function _objectWithoutProperties(obj, keys) {
    var target = {};
    for (var i in obj) {
        if (keys.indexOf(i) >= 0) continue;
        Iif (!Object.prototype.hasOwnProperty.call(obj, i)) continue;
        target[i] = obj[i];
    }
    return target;
}
 
 
exports.extends = _extends;
exports.objectWithoutProperties = _objectWithoutProperties;