rxjs-compat
Version:
[](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat
31 lines • 989 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var operators_1 = require("rxjs/operators");
/**
* Collects all source emissions and emits them as an array when the source completes.
*
* <span class="informal">Get all values inside an array when the source completes</span>
*
* <img src="./img/toArray.png" width="100%">
*
* `toArray` will wait until the source Observable completes
* before emitting the array containing all emissions.
* When the source Observable errors no array will be emitted.
*
* @example <caption>Create array from input</caption>
* const input = Rx.Observable.interval(100).take(4);
*
* input.toArray()
* .subscribe(arr => console.log(arr)); // [0,1,2,3]
*
* @see {@link buffer}
*
* @return {Observable<any[]>|WebSocketSubject<T>|Observable<T>}
* @method toArray
* @owner Observable
*/
function toArray() {
return operators_1.toArray()(this);
}
exports.toArray = toArray;
//# sourceMappingURL=toArray.js.map
;