Skip to content
New issue

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

Add values function #69

Closed
Tracked by #59
ppeeou opened this issue Dec 14, 2021 · 0 comments
Closed
Tracked by #59

Add values function #69

ppeeou opened this issue Dec 14, 2021 · 0 comments
Assignees
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@ppeeou
Copy link
Member

ppeeou commented Dec 14, 2021

Suggestion

⭐ Suggestion

Returns a Iterable/AsyncIterable of all values of the given object

💻 Use Cases

const iter = values({a:1,b:2,c:3});
iter.next(); // {value:1, done:false}
iter.next(); // {value:2, done:false}
iter.next(); // {value:3, done:false}
iter.next(); // {value:undefined, done:true}
@ppeeou ppeeou added enhancement New feature or request good first issue Good for newcomers v0.4 labels Dec 14, 2021
@ppeeou ppeeou changed the title Add values Add values function Dec 14, 2021
@ppeeou ppeeou mentioned this issue Dec 14, 2021
25 tasks
@shine1594 shine1594 self-assigned this Dec 23, 2021
@ppeeou ppeeou closed this as completed Dec 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants