Created
January 26, 2016 18:26
-
-
Save juliandescottes/a0dca6670dc6388df3cb 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* testYield() { | |
console.log("#1"); | |
yield new Promise(r => setTimeout(r, 2000)); | |
console.log("#2"); | |
yield new Promise(r => setTimeout(r, 2000)); | |
console.log("#3"); | |
return; | |
} | |
function* spawnTest() { | |
yield testYield(); | |
console.log("#4"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment