serverless-architectures-aws icon indicating copy to clipboard operation
serverless-architectures-aws copied to clipboard

Incorrect comment in Listing 3.1

Open berkerpeksag opened this issue 7 years ago • 0 comments

The following snippet is in serverless-architectures-aws/chapter-3/Listing 3.1 - 3.4 - Transcode Video Lambda/index.js:

//the input file may have spaces so replace them with '+'
var sourceKey = decodeURIComponent(key.replace(/\+/g, ' '));

However, the code does the opposite of what the comment says. I think the correct version should read as:

var sourceKey = decodeURIComponent(key.replace(/\W/g, '+'));

berkerpeksag avatar Jul 12 '17 18:07 berkerpeksag