Re: [whatwg/streams] Proposal: `ReadableStream.withSafeResolvers()` (Issue #1359)

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