* The reason which was passed to `WritableStream.abort(reason)` when the stream was aborted. * * @deprecated * This property has been removed from the specification, see https://github.com/whatwg/streams/pull/1177. * Use {@link WritableStreamDefaultController.si
()
| 12679 | * Use {@link WritableStreamDefaultController.signal}'s `reason` instead. |
| 12680 | */ |
| 12681 | get abortReason() { |
| 12682 | if (!IsWritableStreamDefaultController(this)) { |
| 12683 | throw defaultControllerBrandCheckException$2("abortReason"); |
| 12684 | } |
| 12685 | return this._abortReason; |
| 12686 | } |
| 12687 | /** |
| 12688 | * An `AbortSignal` that can be used to abort the pending write or close operation when the stream is aborted. |
| 12689 | */ |
nothing calls this directly
no test coverage detected