MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / abortReason

Method abortReason

out/cli.cjs:12681–12686  ·  view source on GitHub ↗

* 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

()

Source from the content-addressed store, hash-verified

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 */

Callers

nothing calls this directly

Tested by

no test coverage detected