(buckets, cb)
| 173 | } |
| 174 | |
| 175 | function removeVersions(buckets, cb) { |
| 176 | async.each(buckets, (bucket, done) => removeAllVersions({ Bucket: bucket }, done), cb); |
| 177 | } |
| 178 | |
| 179 | function getObject(bucket, key, cb) { |
| 180 | s3Client.send(new GetObjectCommand({ Bucket: bucket, Key: key })) |
no test coverage detected