Skip to content

Commit

Permalink
minor linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Oct 31, 2019
1 parent 9caca07 commit c2a2b87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -949,10 +949,10 @@ parse.fastpaths = (input, options) => {
START_ANCHOR
} = constants.globChars(win32);

const capture = opts.capture ? '' : '?:';
let star = opts.bash === true ? '.*?' : STAR;
const nodot = opts.dot ? NO_DOTS : NO_DOT;
const slashDot = opts.dot ? NO_DOTS_SLASH : NO_DOT;
const capture = opts.capture ? '' : '?:';
let star = opts.bash === true ? '.*?' : STAR;

if (opts.capture) {
star = `(${star})`;
Expand Down

0 comments on commit c2a2b87

Please sign in to comment.