Re: [whatwg/streams] Marking promise rejections as handled (#547)

If I understand correctly, there is a visibility difference to JS:

with lazy initialisation, doing

```javascript
reader.ready.then(() => something());
```

would result in an `unhandledrejection` event, but never touching `reader.ready` at all would not.

If we mark the promise as handled, then neither would result in an `unhandledrejection` event.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/issues/547#issuecomment-258411168

Received on Friday, 4 November 2016 11:45:29 UTC