CulturalMe / meteor-slingshot

Upload files directly to AWS S3, Google Cloud Storage and others in meteor
MIT License
595 stars 104 forks source link

Updating deprecated 'new Buffer()' to 'Buffer.from()' #242

Closed almeidapaulooliveira closed 10 months ago

almeidapaulooliveira commented 3 years ago

Updating Buffer() that is deprecated and generating the following warning:

(node:15707) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.

The solution was replace the new Buffer() lines for Buffer.from() as recommended.