Code coverage report for cjs/Operator.js

Statements: 85.71% (6 / 7)      Branches: 100% (0 / 0)      Functions: 33.33% (1 / 3)      Lines: 85.71% (6 / 7)      Ignored: none     

All files » cjs/ » Operator.js
1 2 3 4 5 6 7 8 9 10 111 1 1   1     1   1  
var Subscriber_1 = require('./Subscriber');
var Operator = (function () {
    function Operator() {
    }
    Operator.prototype.call = function (subscriber) {
        return new Subscriber_1.Subscriber(subscriber);
    };
    return Operator;
})();
exports.Operator = Operator;
//# sourceMappingURL=Operator.js.map