We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d7c0d commit 2f2b5ffCopy full SHA for 2f2b5ff
minimatch.js
@@ -134,6 +134,8 @@ function Minimatch (pattern, options) {
134
135
if (!options) options = {}
136
137
+ pattern = pattern.trim()
138
+
139
// windows support: need to use /, not \
140
if (!options.allowWindowsEscape && path.sep !== '/') {
141
pattern = pattern.split(path.sep).join('/')
test/basic.js
@@ -117,13 +117,13 @@ t.test('whitespace handling', t => {
117
t.equal(mm('x/y', 'y'), false)
118
t.equal(mm('x/y', 'y', { matchBase: true }), true)
119
t.equal(mm('x/ ', ' '), false)
120
- t.equal(mm('x/ ', ' ', { matchBase: true }), true)
+ t.equal(mm('x/ ', ' ', { matchBase: true }), false)
121
t.equal(mm('x/', ''), false)
122
t.equal(mm('x/', '', { matchBase: true }), false)
123
t.equal(mm('', ''), true)
124
t.equal(mm(' ', ''), false)
125
- t.equal(mm('', ' '), false)
126
- t.equal(mm(' ', ' '), true)
+ t.equal(mm('', ' '), true)
+ t.equal(mm(' ', ' '), false)
127
t.end()
128
})
129
@@ -165,6 +165,11 @@ t.test('flipNegate', t => {
165
166
167
168
+t.test('pattern should be trimmed', t => {
169
+ t.equal(mm('x', ' x '), true)
170
+ t.end()
171
+})
172
173
function alpha (a, b) {
174
return a > b ? 1 : -1
175
}
0 commit comments