Code coverage report for RxJS/dist/cjs/testing/SubscriptionLog.js

Statements: 90.91% (10 / 11)      Branches: 83.33% (5 / 6)      Functions: 100% (2 / 2)      Lines: 100% (9 / 9)      Ignored: none     

All files » RxJS/dist/cjs/testing/ » SubscriptionLog.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17    1   3020   1 3020   3020   3020 3020     1 1
"use strict";
 
exports.__esModule = true;
 
function _classCallCheck(instance, Constructor) { Iif (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
 
var SubscriptionLog = function SubscriptionLog(subscribedFrame) {
    var unsubscribedFrame = arguments.length <= 1 || arguments[1] === undefined ? Number.POSITIVE_INFINITY : arguments[1];
 
    _classCallCheck(this, SubscriptionLog);
 
    this.subscribedFrame = subscribedFrame;
    this.unsubscribedFrame = unsubscribedFrame;
};
 
exports["default"] = SubscriptionLog;
module.exports = exports["default"];