diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-09 17:22:22 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-09 17:22:22 -0400 |
commit | 93f7f00c956c14620ef031626f124b57397ca867 (patch) | |
tree | c5a9f536e79d2c8d2d02897511a9138acaf35394 /std/fs/glob.ts | |
parent | 28293acd9c12a94f5d769706291032e844c7b92b (diff) |
Run deno_std tests in github actions
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) { |