Skip to content

Instantly share code, notes, and snippets.

@SalvoCozzubo
Last active October 14, 2021 11:18
Show Gist options
  • Save SalvoCozzubo/3bc0802d4de270b2bbfc29b920732d45 to your computer and use it in GitHub Desktop.
Save SalvoCozzubo/3bc0802d4de270b2bbfc29b920732d45 to your computer and use it in GitHub Desktop.
S3 Stream to String
const streamToString = (stream) => new Promise((resolve, reject) => {
const chunks = [];
stream.on('data', (chunk) => chunks.push(chunk));
stream.on('error', reject);
stream.on('end', () => resolve(Buffer.concat(chunks).toString('utf8')));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment