(error: unknown)
| 48 | } |
| 49 | |
| 50 | export function isRetryableUploadStreamError(error: unknown): boolean { |
| 51 | return error instanceof AppError && error.details?.[UPLOAD_STREAM_RETRYABLE_DETAIL] === true; |
| 52 | } |
| 53 | |
| 54 | async function streamFileToHttpRequestAttempt(options: { |
| 55 | url: URL; |
no outgoing calls
no test coverage detected