- From: Domenic Denicola <notifications@github.com>
- Date: Wed, 30 Jan 2019 13:56:22 -0800
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 30 January 2019 21:56:43 UTC
domenic commented on this pull request. > } +const AsyncIteratorPrototype = Object.getPrototypeOf(Object.getPrototypeOf(async function* () {}).prototype); +const ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf({ The following should work: ```js const RSAIP = Object.setPrototypeOf({ next() { ... }, return() { ... } }, AIP); Object.defineProperty(RSAIP, 'next', { enumerable: false }); Object.defineProperty(RSAIP, 'return', { enumerable: false }); ``` -- 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/pull/980#discussion_r252454283
Received on Wednesday, 30 January 2019 21:56:43 UTC