-
-
Save kypflug/7556530ff3b5b40c3753 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function spawn(genF, self) { | |
return new Promise(function (resolve, reject) { | |
var gen = genF.call(self); | |
function step(nextF) { | |
var next; | |
try { | |
next = nextF(); | |
} catch (e) { | |
// finished with failure, reject the promise | |
reject(e); | |
return; | |
} | |
if (next.done) { | |
// finished with success, resolve the promise | |
resolve(next.value); | |
return; | |
} | |
// not finished, chain off the yielded promise and `step` again | |
Promise.resolve(next.value).then(function (v) { | |
step(function () { return gen.next(v); }); | |
}, function (e) { | |
step(function () { return gen.throw(e); }); | |
}); | |
} | |
step(function () { return gen.next(undefined); }); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment