We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ECMASCript feature https://www.ecma-international.org/ecma-262/11.0/index.html#sec-map.prototype.values
Example code
const map1 = new Map(); map1.set('0', 'foo'); map1.set(1, 'bar'); const iterator1 = map1.values(); console.log(iterator1.next().value); // expected output: "foo" console.log(iterator1.next().value); // expected output: "bar"
The text was updated successfully, but these errors were encountered:
I have that exact code working in a test on a branch. Implementation needs more work though. I will submit a PR when it's ready for review.
Looks like #847 should address this once finished by changing the iterator Kind to Value.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
ECMASCript feature
https://www.ecma-international.org/ecma-262/11.0/index.html#sec-map.prototype.values
Example code
The text was updated successfully, but these errors were encountered: