(promise: Promise<T>)
| 94 | return { |
| 95 | cleanup, |
| 96 | race<T>(promise: Promise<T>) { |
| 97 | return Promise.race([promise, writableErrorPromise]); |
| 98 | }, |
| 99 | throwIfClosed() { |
| 100 | if (writableError) { |
| 101 | throw writableError; |
nothing calls this directly
no test coverage detected
searching dependent graphs…