Skip to content

Instantly share code, notes, and snippets.

@nriesco
Last active September 15, 2018 15:53
Show Gist options
  • Save nriesco/d3fdb12ca754d1db450a39d8d40c3829 to your computer and use it in GitHub Desktop.
Save nriesco/d3fdb12ca754d1db450a39d8d40c3829 to your computer and use it in GitHub Desktop.
// ref: https://stackoverflow.com/a/37576787/2027670
async function parallelFiles () {
const files = []; // some data
await Promise.all(files.map(async (file) => {
const contents = await fs.readFile(file, 'utf8')
console.log(contents)
}));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment