Skip to content

Instantly share code, notes, and snippets.

@SFantasy
Created October 24, 2014 08:34
Show Gist options
  • Save SFantasy/b56e5616b48ff59ea013 to your computer and use it in GitHub Desktop.
Save SFantasy/b56e5616b48ff59ea013 to your computer and use it in GitHub Desktop.
ECMAScript 6 Generator
function * foo (input) {
var res = yield input;
}
var g = foo(10);
g.next(); // { value: 10, done: false }
g.next(); // { value: undefined, done: true }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment