rxjs-fruits
rxjs-fruits copied to clipboard
subscription will make the belt move, take should stop the belt
https://www.rxjs-fruits.com/take
take will complete and therefore unsubscribe => belt should stop moving then.
I believe same is true with from
? :/
@andreElrico It completes the input Observable, not the output observable you receive after the take operation. You subscribe to this output observable, not to the input observable.