Don't modify 'opts' parameter

This commit is contained in:
Simon Detheridge 2020-03-16 15:57:37 +00:00
parent b37c52fc3a
commit 9d32d4ec16

View file

@ -113,7 +113,8 @@ async function sendStream(bucketName, key, readStream, sourceMd5) {
}
}
async function getFileStream(bucketName, key, opts = {}) {
async function getFileStream(bucketName, key, _opts = {}) {
const opts = Object.assign({}, _opts)
if (opts.end) {
// S3 (and http range headers) treat 'end' as inclusive, so increase this by 1
opts.end++