summaryrefslogtreecommitdiff
path: root/std/fs/walk.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/walk.ts')
-rw-r--r--std/fs/walk.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/std/fs/walk.ts b/std/fs/walk.ts
index fbd14740b..3f178c0c5 100644
--- a/std/fs/walk.ts
+++ b/std/fs/walk.ts
@@ -67,7 +67,7 @@ export async function* walk(
followSymlinks = false,
exts = undefined,
match = undefined,
- skip = undefined
+ skip = undefined,
}: WalkOptions = {}
): AsyncIterableIterator<WalkInfo> {
if (maxDepth < 0) {
@@ -105,7 +105,7 @@ export async function* walk(
followSymlinks,
exts,
match,
- skip
+ skip,
});
}
}
@@ -121,7 +121,7 @@ export function* walkSync(
followSymlinks = false,
exts = undefined,
match = undefined,
- skip = undefined
+ skip = undefined,
}: WalkOptions = {}
): IterableIterator<WalkInfo> {
if (maxDepth < 0) {
@@ -158,7 +158,7 @@ export function* walkSync(
followSymlinks,
exts,
match,
- skip
+ skip,
});
}
}