Skip to content

Instantly share code, notes, and snippets.

@nriesco
Created September 15, 2018 15:34
Show Gist options
  • Save nriesco/396ee01d2c9cc10d8aeb9aedd2b23688 to your computer and use it in GitHub Desktop.
Save nriesco/396ee01d2c9cc10d8aeb9aedd2b23688 to your computer and use it in GitHub Desktop.
// ref: https://stackoverflow.com/a/37576787/2027670
async function sequentialFiles () {
const files = []; // some data
for (let file of files) {
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