refactor: remove custom isObservable()#39643
refactor: remove custom isObservable()#39643petebacondarwin wants to merge 1 commit intoangular:masterfrom
isObservable()#39643Conversation
RXJS introduced the `isObservable()` method in 6.1.0. So we can now use that instead of our own function.
|
Actually we cannot use RXJS's Our But either way, this PR cannot land as it is. |
|
It might not be available soon but here is the log of the CI builds that failed for this change: and the AIO size checker failed with: |
This commit removes the TODO comment that proposed that we use the built-in RxJS `isObservable()` function. This is not a viable approach since the built-in function requires that the `obj` contains additional methods that our "observable" types (such as `EventEmitter`) do not necessarily have. See angular#39643 for more information.
This commit removes the TODO comment that proposed that we use the built-in RxJS `isObservable()` function. This is not a viable approach since the built-in function requires that the `obj` contains additional methods that our "observable" types (such as `EventEmitter`) do not necessarily have. See #39643 for more information. PR Close #39669
This commit removes the TODO comment that proposed that we use the built-in RxJS `isObservable()` function. This is not a viable approach since the built-in function requires that the `obj` contains additional methods that our "observable" types (such as `EventEmitter`) do not necessarily have. See #39643 for more information. PR Close #39669
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
RXJS introduced the
isObservable()method in 6.1.0.So we can now use that instead of our own function.