hildjj / hildjj/node-inspect-extracted
Map entry iterators should be distinguised from value iterators.
Open
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 19
- Forks
- 5
- PR merge metrics
- No merged PRs in 30d
Description
Code:
const map = new Map([['foo', 'bar']]);
inspect(map.entries());
expected: [Map Entries] { [ 'foo', 'bar' ] }
actual: [Map Iterator] { }
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at the inspect(map.entries()) entry point and trace how Map iterators are rendered. Confirm completion by making the provided example distinguish map entry iterators and produce the expected [Map Entries] output rather than an empty [Map Iterator] result.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 55/100