Skip to content

Instantly share code, notes, and snippets.

@thomasbrueggemann
Created April 22, 2018 08:07
Show Gist options
  • Save thomasbrueggemann/a56decc6c419db9e0a57e6768bf75db4 to your computer and use it in GitHub Desktop.
Save thomasbrueggemann/a56decc6c419db9e0a57e6768bf75db4 to your computer and use it in GitHub Desktop.
export default (genFunc) => {
let next = null;
do {
next = genFunc.next();
} while (!next.done);
return next.value;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment