shareReplay.js 380 B

12345678
  1. import { shareReplay as higherOrder } from 'rxjs/operators';
  2. export function shareReplay(configOrBufferSize, windowTime, scheduler) {
  3. if (configOrBufferSize && typeof configOrBufferSize === 'object') {
  4. return higherOrder(configOrBufferSize)(this);
  5. }
  6. return higherOrder(configOrBufferSize, windowTime, scheduler)(this);
  7. }
  8. //# sourceMappingURL=shareReplay.js.map