Created
June 3, 2017 10:36
-
-
Save gskachkov/fa8c1f7d85ffbd1d684adcedc9f039ce 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 foo = async () => console.log('foo'); | |
const boo = async () => { | |
console.log('boo'); | |
const result = await 'b'; | |
return result; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment