Code coverage report for cjs/operator/publishReplay.js

Statements: 100% (9 / 9)      Branches: 75% (3 / 4)      Functions: 100% (1 / 1)      Lines: 100% (7 / 7)      Ignored: none     

All files » cjs/operator/ » publishReplay.js
1 2 3 4 5 6 7 8 91 1 1 19 19 19   1  
var ReplaySubject_1 = require('../subject/ReplaySubject');
var multicast_1 = require('./multicast');
function publishReplay(bufferSize, windowTime, scheduler) {
    if (bufferSize === void 0) { bufferSize = Number.POSITIVE_INFINITY; }
    Eif (windowTime === void 0) { windowTime = Number.POSITIVE_INFINITY; }
    return multicast_1.multicast.call(this, new ReplaySubject_1.ReplaySubject(bufferSize, windowTime, scheduler));
}
exports.publishReplay = publishReplay;
//# sourceMappingURL=publishReplay.js.map