simontonsoftware / s-libs

A collection of libraries for any of javascript, rxjs, or angular.
MIT License
43 stars 5 forks source link

[ng-core] Make subscribeTo mirror subscribe #27

Closed jritzi closed 3 years ago

jritzi commented 3 years ago

It would be helpful for subscribeTo to accept anything that native .subscribe() can (in particular, a BehaviorSubject).

ersimont commented 3 years ago

Addressed in 4b1aad6379411a6d52c85b65a6edecca19bc7bb4. Use the new SubscriptionManager.manage() for this. E.g.:

subscriptionManager.manage(observable.subscribe(observer));