Skip to content

Instantly share code, notes, and snippets.

@kvasdopil
Last active February 7, 2017 14:06
Show Gist options
  • Select an option

  • Save kvasdopil/746c15d5c6484ec3b7b0237007e521a1 to your computer and use it in GitHub Desktop.

Select an option

Save kvasdopil/746c15d5c6484ec3b7b0237007e521a1 to your computer and use it in GitHub Desktop.
async function processStream(stream)
{
while(let data = await stream.read())
{
// process data
}
}
db.on('end', () => db.close());
await Promise.all([1, 2, 3].map(i =>
processStream(db)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment