Given such observable
Rx.Observable.of([1,2,3,4,5])
which emits a single item (that is an array), what is the operator
Dont understand why concatMap(x => x) or flatMap(x => x) works, it doesnt change anything. This should work (rxjs 6 or above):
concatMap(x => x)
flatMap(x => x)
of([4,5,6]).pipe(mergeMap(from))