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.
20 lines
685 B
20 lines
685 B
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
var concat_1 = require("../observable/concat"); |
|
var isScheduler_1 = require("../util/isScheduler"); |
|
function startWith() { |
|
var array = []; |
|
for (var _i = 0; _i < arguments.length; _i++) { |
|
array[_i] = arguments[_i]; |
|
} |
|
var scheduler = array[array.length - 1]; |
|
if (isScheduler_1.isScheduler(scheduler)) { |
|
array.pop(); |
|
return function (source) { return concat_1.concat(array, source, scheduler); }; |
|
} |
|
else { |
|
return function (source) { return concat_1.concat(array, source); }; |
|
} |
|
} |
|
exports.startWith = startWith; |
|
//# sourceMappingURL=startWith.js.map
|