mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-30 21:58:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			338 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			338 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| var shareReplay_1 = require('../operators/shareReplay');
 | |
| /**
 | |
|  * @method shareReplay
 | |
|  * @owner Observable
 | |
|  */
 | |
| function shareReplay(bufferSize, windowTime, scheduler) {
 | |
|     return shareReplay_1.shareReplay(bufferSize, windowTime, scheduler)(this);
 | |
| }
 | |
| exports.shareReplay = shareReplay;
 | |
| ;
 | |
| //# sourceMappingURL=shareReplay.js.map
 | 
