tc39 / proposal-observable

Observables for ECMAScript
https://tc39.github.io/proposal-observable/
3.08k stars 90 forks source link

Updating spec and ref code to reflect resolution of several issues #134

Closed jhusain closed 7 years ago

jhusain commented 7 years ago

SubscriptionObserver no longer exposes completion values of Observer to Observable. (https://github.com/tc39/proposal-observable/issues/119)

Arguments to subscribe are no longer checked for validity in order to be consistent with Promise behavior. (https://github.com/tc39/proposal-observable/issues/133)

The result of these changes is that subscribe never throws under any circumstances.