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

12 lines
365 B
JavaScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
/** PURE_IMPORTS_START .._operators_shareReplay PURE_IMPORTS_END */
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