(mode, context)
| 11840 | }; |
| 11841 | } |
| 11842 | function convertReadableStreamReaderMode(mode, context) { |
| 11843 | mode = `${mode}`; |
| 11844 | if (mode !== "byob") { |
| 11845 | throw new TypeError(`${context} '${mode}' is not a valid enumeration value for ReadableStreamReaderMode`); |
| 11846 | } |
| 11847 | return mode; |
| 11848 | } |
| 11849 | function convertByobReadOptions(options, context) { |
| 11850 | var _a6; |
| 11851 | assertDictionary(options, context); |
no outgoing calls
no test coverage detected