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
Currently, we have a behavior where if you provide an object to fromEvent that is not a valid target, it does not error until you try to subscribe to the result. I submit that this is probably a bad behavior, and we should notify the developer as soon as we know it's incorrect.
We have three choices:
Throw on subscribe (as is)
Throw when fromEvent is called.
Don't throw at all and let things just fail.
I suspect that 2 is the proper choice here.
The text was updated successfully, but these errors were encountered:
Currently, we have a behavior where if you provide an object to
fromEvent
that is not a valid target, it does not error until you try to subscribe to the result. I submit that this is probably a bad behavior, and we should notify the developer as soon as we know it's incorrect.We have three choices:
fromEvent
is called.I suspect that 2 is the proper choice here.
The text was updated successfully, but these errors were encountered: