biofriction-wp-theme/node_modules/rxjs/_esm2015/operator/shareReplay.js

10 lines
296 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
import { shareReplay as higherOrder } from '../operators/shareReplay';
/**
* @method shareReplay
* @owner Observable
*/
export function shareReplay(bufferSize, windowTime, scheduler) {
return higherOrder(bufferSize, windowTime, scheduler)(this);
}
;
//# sourceMappingURL=shareReplay.js.map