Skip to content

Commit

Permalink
Default filepath to true in expandGlob()
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn committed Sep 28, 2019
1 parent 4c86ea6 commit c9ccba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/glob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export async function* expandGlob(
extended = false,
globstar = false,
strict = false,
filepath = false,
filepath = true,
flags = ""
}: ExpandGlobOptions = {}
): AsyncIterableIterator<WalkInfo> {
Expand All @@ -124,7 +124,7 @@ export function* expandGlobSync(
extended = false,
globstar = false,
strict = false,
filepath = false,
filepath = true,
flags = ""
}: ExpandGlobOptions = {}
): IterableIterator<WalkInfo> {
Expand Down

0 comments on commit c9ccba0

Please sign in to comment.