shareReplay.js 493 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var operators_1 = require("rxjs/operators");
  4. function shareReplay(configOrBufferSize, windowTime, scheduler) {
  5. if (configOrBufferSize && typeof configOrBufferSize === 'object') {
  6. return operators_1.shareReplay(configOrBufferSize)(this);
  7. }
  8. return operators_1.shareReplay(configOrBufferSize, windowTime, scheduler)(this);
  9. }
  10. exports.shareReplay = shareReplay;
  11. //# sourceMappingURL=shareReplay.js.map