(x5, context)
| 12096 | return (chunk, controller) => promiseCall(fn, original, [chunk, controller]); |
| 12097 | } |
| 12098 | function assertWritableStream(x5, context) { |
| 12099 | if (!IsWritableStream(x5)) { |
| 12100 | throw new TypeError(`${context} is not a WritableStream.`); |
| 12101 | } |
| 12102 | } |
| 12103 | function isAbortSignal(value) { |
| 12104 | if (typeof value !== "object" || value === null) { |
| 12105 | return false; |
no test coverage detected
searching dependent graphs…