Skip to content

Instantly share code, notes, and snippets.

@rafkhan
Created November 1, 2014 21:20
Show Gist options
  • Save rafkhan/1d46278f10c934c1e55e to your computer and use it in GitHub Desktop.
Save rafkhan/1d46278f10c934c1e55e to your computer and use it in GitHub Desktop.
var process = function(f) {
var gen = f();
var nextVal = function(lastVal) {
var itr = gen.next(lastVal);
if(itr.done) { return; }
itr.value.then(nextVal);
};
nextVal();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment