minimatch
Advanced tools
Comparing version 6.1.3 to 6.1.4
@@ -602,3 +602,3 @@ "use strict"; | ||
case ')': { | ||
const plEntry = patternListStack.pop(); | ||
const plEntry = patternListStack[patternListStack.length - 1]; | ||
if (inClass || !plEntry) { | ||
@@ -608,2 +608,3 @@ re += '\\)'; | ||
} | ||
patternListStack.pop(); | ||
// closing an extglob | ||
@@ -610,0 +611,0 @@ clearStateChar(); |
@@ -590,3 +590,3 @@ export const minimatch = (p, pattern, options = {}) => { | ||
case ')': { | ||
const plEntry = patternListStack.pop(); | ||
const plEntry = patternListStack[patternListStack.length - 1]; | ||
if (inClass || !plEntry) { | ||
@@ -596,2 +596,3 @@ re += '\\)'; | ||
} | ||
patternListStack.pop(); | ||
// closing an extglob | ||
@@ -598,0 +599,0 @@ clearStateChar(); |
@@ -5,3 +5,3 @@ { | ||
"description": "a glob matcher in javascript", | ||
"version": "6.1.3", | ||
"version": "6.1.4", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type": "git", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
156178
2095