Skip to content

Instantly share code, notes, and snippets.

@Abazhenov
Last active April 23, 2017 17:07
Show Gist options
  • Save Abazhenov/3983cc87f5977081512c27bd1cba48a7 to your computer and use it in GitHub Desktop.
Save Abazhenov/3983cc87f5977081512c27bd1cba48a7 to your computer and use it in GitHub Desktop.
const associateUsers = async () => {
try {
doSynchronousthings()
const users = await getUsers()
return users.map(user => user.getAddress());
} catch(err){
console.error(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment