Skip to content

Instantly share code, notes, and snippets.

@pvdz
Created February 20, 2014 18:50
Show Gist options
  • Save pvdz/9120576 to your computer and use it in GitHub Desktop.
Save pvdz/9120576 to your computer and use it in GitHub Desktop.
regular-for-to-while transformation :)
function* f(){
for(var i=0;;++i) {
yield i;
}
}
// =>
function* f(){
{var i=0;while(true) {
yield i;
++i;}}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment