Skip to content

Instantly share code, notes, and snippets.

@anomaly44
Last active March 28, 2017 10:44
Show Gist options
  • Save anomaly44/fd4c6d93befe2485334fdcda0c777568 to your computer and use it in GitHub Desktop.
Save anomaly44/fd4c6d93befe2485334fdcda0c777568 to your computer and use it in GitHub Desktop.
function* bar() {
yield delay(10000);
console.log('ok');
}
function* foo() {
while(true) {
yield take(SOME_ACTION);
yield bar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment