UNPKG

rxjs-compat

Version:

[![CircleCI](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x.svg?style=svg)](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [![npm version](https://badge.fury.io/js/%40reactivex%2Frxjs.svg)](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat

18 lines 621 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var operators_1 = require("rxjs/operators"); /* tslint:enable:max-line-length */ /** * @param bufferSize * @param windowTime * @param selectorOrScheduler * @param scheduler * @return {Observable<T> | ConnectableObservable<T>} * @method publishReplay * @owner Observable */ function publishReplay(bufferSize, windowTime, selectorOrScheduler, scheduler) { return operators_1.publishReplay(bufferSize, windowTime, selectorOrScheduler, scheduler)(this); } exports.publishReplay = publishReplay; //# sourceMappingURL=publishReplay.js.map