Created
February 23, 2017 05:18
-
-
Save alanhoff/ca09d66de5e786044fab64f1789a38e2 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
function hello () { | |
return new Promise((resolve) => { | |
setTimeout(() => resolve('Hello world!'), 100) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment