Re: [whatwg/streams] Add ReadableStreamBYOBReader.read(view, { atLeast }) (#1145)

A little bikeshedding: how do we feel about the name `"atLeast"` for the new option? I'm thinking `"min"` might be better? (Still avoiding `"minBytes"`, because of multi-byte typed arrays.)
```javascript
const { done, value } = byobReader.read(view, { min: 8 });
// value is minimum 8 elements long
```

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

Message ID: <whatwg/streams/pull/1145/c1110216369@github.com>

Received on Tuesday, 26 April 2022 20:25:49 UTC