You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subscribe to notifier given notifierObserver and options.
Subscribe assumes the given observer is an Observable. So I think there's a missing step to coerce an any to an Observable. Perhaps this is missing because from(any value) has yet to be specced? Additionally it looks as though Chrome's implementation just expects takeUntil() to recieve an Observable.
takeUntil
's IDL is as follows:However the first thing the spec for
takeUntil(notifier)
does withnotifier
, in step 2.3 is:Subscribe
assumes the given observer is anObservable
. So I think there's a missing step to coerce anany
to anObservable
. Perhaps this is missing becausefrom(any value)
has yet to be specced? Additionally it looks as though Chrome's implementation just expectstakeUntil()
to recieve anObservable
.This is tracked in https://issues.chromium.org/issues/40282760 but I'm bringing it here also.
The text was updated successfully, but these errors were encountered: