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

10 lines
296 B
JavaScript

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