Skip to content
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.

regenerator/packages/regenerator-runtime/runtime.js #404

Open
nopromble opened this issue Oct 5, 2020 · 0 comments
Open

regenerator/packages/regenerator-runtime/runtime.js #404

nopromble opened this issue Oct 5, 2020 · 0 comments

Comments

@nopromble
Copy link

The following code does not transform as expected:

function *range(max, step) {
  var count = 0;
  step = step || 1;

  for (var i = 0; i < max; i += step) {
    count++;
    yield i;
  }

  return count;
}

var gen = range(20, 3), info;

while (!(info = gen.next()).done) {
  console.log(info.value);
}

console.log("steps taken: " + info.value);
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant