You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							15 lines
						
					
					
						
							664 B
						
					
					
				
			
		
		
	
	
							15 lines
						
					
					
						
							664 B
						
					
					
				"use strict"; | 
						|
Object.defineProperty(exports, "__esModule", { value: true }); | 
						|
var mergeMap_1 = require("./mergeMap"); | 
						|
function mergeMapTo(innerObservable, resultSelector, concurrent) { | 
						|
    if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; } | 
						|
    if (typeof resultSelector === 'function') { | 
						|
        return mergeMap_1.mergeMap(function () { return innerObservable; }, resultSelector, concurrent); | 
						|
    } | 
						|
    if (typeof resultSelector === 'number') { | 
						|
        concurrent = resultSelector; | 
						|
    } | 
						|
    return mergeMap_1.mergeMap(function () { return innerObservable; }, concurrent); | 
						|
} | 
						|
exports.mergeMapTo = mergeMapTo; | 
						|
//# sourceMappingURL=mergeMapTo.js.map
 |