Skip to content

Instantly share code, notes, and snippets.

@vjeux
Created January 15, 2012 17:29
Show Gist options
  • Select an option

  • Save vjeux/1616518 to your computer and use it in GitHub Desktop.

Select an option

Save vjeux/1616518 to your computer and use it in GitHub Desktop.
function f(a) {
var b = yield 'A';
var c = yield 'B';
}
gen = f('a');
var A = gen.next();
var B = gen.send('b');
gen.send('c');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment