Last active
April 23, 2017 17:07
-
-
Save Abazhenov/3983cc87f5977081512c27bd1cba48a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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