Created
March 2, 2015 18:53
-
-
Save ryanisinallofus/c99a0ba8d97805e22b4b 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
parallel([ | |
parallel([ | |
series([ | |
step1(()=> console.log("step1")), | |
step2(()=> console.log("step1")), | |
step3(()=> console.log("step1")) | |
]) | |
]), | |
task1(()=> console.log("task1")), | |
task2(()=> console.log("task2")) | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment