(pair, context)
| 13921 | } |
| 13922 | } |
| 13923 | function convertReadableWritablePair(pair, context) { |
| 13924 | assertDictionary(pair, context); |
| 13925 | const readable = pair === null || pair === void 0 ? void 0 : pair.readable; |
| 13926 | assertRequiredField(readable, "readable", "ReadableWritablePair"); |
| 13927 | assertReadableStream(readable, `${context} has member 'readable' that`); |
| 13928 | const writable = pair === null || pair === void 0 ? void 0 : pair.writable; |
| 13929 | assertRequiredField(writable, "writable", "ReadableWritablePair"); |
| 13930 | assertWritableStream(writable, `${context} has member 'writable' that`); |
| 13931 | return { readable, writable }; |
| 13932 | } |
| 13933 | class ReadableStream7 { |
| 13934 | constructor(rawUnderlyingSource = {}, rawStrategy = {}) { |
| 13935 | if (rawUnderlyingSource === void 0) { |
no test coverage detected
searching dependent graphs…