Skip to content

Commit 16a29cb

Browse files
committed
fixup! fixup! lib: fix fs.readdir recursive async
1 parent 6ca4cf4 commit 16a29cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ function readdirRecursive(basePath, options, callback) {
14331433
// The first array is the names, and the second array is the types.
14341434
// They are guaranteed to be the same length; hence, setting `length` to the length
14351435
// of the first array within the result.
1436-
const processReaddirResult = (context) => (context.withFileTypes ? handleDirents(context) : handleFilePaths(context));
1436+
const processReaddirResult = (args) => (args.context.withFileTypes ? handleDirents(args) : handleFilePaths(args));
14371437

14381438
function handleDirents({ result, currentPath, context }) {
14391439
const { 0: names, 1: types } = result;

0 commit comments

Comments
 (0)