Fix line 40 to long issue.

dev
Roman Burunkov 5 years ago committed by GitHub
parent 9212470685
commit 2e839cb52a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lib/tempFileHandler.js

@ -37,7 +37,8 @@ module.exports = function(options, fieldname, filename) {
},
complete: function(){
writeStream.end();
return Buffer.concat([]); //return empty buffer since data has been uploaded to the temporary file.
//return empty buffer since data has been uploaded to the temporary file.
return Buffer.concat([]);
},
cleanup: function(){
writeStream.end();

Loading…
Cancel
Save