-
Notifications
You must be signed in to change notification settings - Fork 633
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
feat(fs/unstable): add readDir #6338
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6338 +/- ##
==========================================
- Coverage 96.44% 96.40% -0.04%
==========================================
Files 547 549 +2
Lines 41812 41841 +29
Branches 6348 6350 +2
==========================================
+ Hits 40325 40337 +12
- Misses 1447 1464 +17
Partials 40 40 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you!
This PR adds the
readDir
API to@std/fs
, which is a function intended to mirrorDeno.readDir
.Towards #6255.