Skip to content

Instantly share code, notes, and snippets.

@mjethani
Created July 17, 2015 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjethani/052a1d8e14750695b21a to your computer and use it in GitHub Desktop.
Save mjethani/052a1d8e14750695b21a to your computer and use it in GitHub Desktop.
function* fibonacci(n = Infinity) {
yield* function* _(a = 0, b = 1) {
if (n-- > 0) {
yield a;
yield* _(b, a + b);
}
}();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment