[RX 4] Rx.Observable.prototype.concat does not accept array of observables
Author: FunkMonkeyCreated Apr 8, 2016Updated Mar 10, 2018
Despite the docs for Rx.Observable.prototype.concat saying that the operator accepts an array of observables, the function doesn't check for arrays (see the code) while Rx.Observable.concat does.
This leads to a subscription error, as concat tries to call subscribe on the passed array.
Source: Reactive-Extensions/RxJS