'use strict';
exports.__esModule = true;
exports['default'] = concat;
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _Observable = require('../Observable');
var _Observable2 = _interopRequireDefault(_Observable);
/**
* Joins this observable with multiple other observables by subscribing to them one at a time, starting with the source,
* and merging their results into the returned observable. Will wait for each observable to complete before moving
* on to the next.
* @params {...Observable} the observables to concatenate
* @params {Scheduler} [scheduler] an optional scheduler to schedule each observable subscription on.
* @returns {Observable} All values of each passed observable merged into a single observable, in order, in serial fashion.
*/
function concat() {
for (var _len = arguments.length, observables = Array(_len), _key = 0; _key < _len; _key++) {
observables[_key] = arguments[_key];
}
var args = observables;
args.unshift(this);
Iif (args.length > 1 && typeof args[args.length - 1].schedule === 'function') {
args.splice(args.length - 2, 0, 1);
}
return _Observable2['default'].fromArray(args).mergeAll(1);
}
//# sourceMappingURL=concat.js.map
module.exports = exports['default'];
//# sourceMappingURL=concat.js.map |