@testim/testim-cli
Version:
Command line interface for running Testing on you CI
8 lines (7 loc) • 319 B
JavaScript
/**
* Concatenates an observable sequence of observable sequences.
* @returns {Observable} An observable sequence that contains the elements of each observed inner sequence, in sequential order.
*/
observableProto.concatAll = observableProto.concatObservable = function () {
return this.merge(1);
};