(signal, context)
| 13916 | }; |
| 13917 | } |
| 13918 | function assertAbortSignal(signal, context) { |
| 13919 | if (!isAbortSignal(signal)) { |
| 13920 | throw new TypeError(`${context} is not an AbortSignal.`); |
| 13921 | } |
| 13922 | } |
| 13923 | function convertReadableWritablePair(pair, context) { |
| 13924 | assertDictionary(pair, context); |
| 13925 | const readable = pair === null || pair === void 0 ? void 0 : pair.readable; |
no test coverage detected
searching dependent graphs…