Given such observable
Rx.Observable.of([1,2,3,4,5])
which emits a single item (that is an array), what is the operator that will transform this observable to a one that emits 5 single items (or whatever the array consists of)?
The example is on .of
, but it would be the same for fetching arrays via promises, there might be many other examples. Don't suggest to replace of
with from