- From: James M Snell <notifications@github.com>
- Date: Sat, 31 Jan 2026 07:25:27 -0800
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 31 January 2026 15:25:31 UTC
jasnell left a comment (whatwg/streams#1359)
While I symphathize with the goals, as an implementer I'm not really convinced this is well motivated enough. The existing pattern of extracting the `controller` via the `start` is well established and libraries/apps that are using it are unlikely to change:
```js
let controller;
let rs = new ReadableStream({
start(c) { controller = c; }
});
```
--
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/issues/1359#issuecomment-3828709795
You are receiving this because you are subscribed to this thread.
Message ID: <whatwg/streams/issues/1359/3828709795@github.com>
Received on Saturday, 31 January 2026 15:25:31 UTC