(onFinally?: (() => void) | null)
| 98 | } |
| 99 | |
| 100 | public finally(onFinally?: (() => void) | null): Promise<T> { |
| 101 | return this.promise.finally(onFinally) |
| 102 | } |
| 103 | |
| 104 | public cancel(): void { |
| 105 | if (this._isResolved || this._isRejected || this._isCancelled) { |
nothing calls this directly
no outgoing calls
no test coverage detected