diff options
Diffstat (limited to 'std/fs/glob.ts')
-rw-r--r-- | std/fs/glob.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/std/fs/glob.ts b/std/fs/glob.ts index 86d83b4f8..9be6197fc 100644 --- a/std/fs/glob.ts +++ b/std/fs/glob.ts @@ -246,8 +246,8 @@ export async function* expandGlob( ); } if (hasTrailingSep) { - currentMatches = currentMatches.filter(({ info }): boolean => - info.isDirectory() + currentMatches = currentMatches.filter( + ({ info }): boolean => info.isDirectory() ); } if (!includeDirs) { @@ -348,8 +348,8 @@ export function* expandGlobSync( ); } if (hasTrailingSep) { - currentMatches = currentMatches.filter(({ info }): boolean => - info.isDirectory() + currentMatches = currentMatches.filter( + ({ info }): boolean => info.isDirectory() ); } if (!includeDirs) { |