(partNumber, body)
| 228 | const parts: S3MultipartPart[] = [] |
| 229 | return { |
| 230 | async uploadPart(partNumber, body) { |
| 231 | parts.push(await uploadS3Part(key, uploadId, partNumber, body, config)) |
| 232 | }, |
| 233 | finish: () => completeS3MultipartUpload(key, uploadId, parts, config).then(() => undefined), |
| 234 | abort: () => abortS3MultipartUpload(key, uploadId, config), |
| 235 | } |
nothing calls this directly
no test coverage detected