Skip to content

Instantly share code, notes, and snippets.

@awto
Created March 8, 2019 15:13
Show Gist options
  • Save awto/896f470788f2b1d7dddf13e25e1e35f0 to your computer and use it in GitHub Desktop.
Save awto/896f470788f2b1d7dddf13e25e1e35f0 to your computer and use it in GitHub Desktop.
Join Async
async function join(input) {
const output = [];
for(const i of input)
output.push(await i);
return [...output];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment