(x5)
| 12585 | }); |
| 12586 | } |
| 12587 | function IsWritableStreamDefaultWriter(x5) { |
| 12588 | if (!typeIsObject(x5)) { |
| 12589 | return false; |
| 12590 | } |
| 12591 | if (!Object.prototype.hasOwnProperty.call(x5, "_ownerWritableStream")) { |
| 12592 | return false; |
| 12593 | } |
| 12594 | return x5 instanceof WritableStreamDefaultWriter2; |
| 12595 | } |
| 12596 | function WritableStreamDefaultWriterAbort(writer, reason) { |
| 12597 | const stream4 = writer._ownerWritableStream; |
| 12598 | return WritableStreamAbort(stream4, reason); |
no test coverage detected
searching dependent graphs…