Skip to content

Commit 2f2b5ff

Browse files
committed
fix: trim pattern
Overlooked that went missing at some point. Fix: #156
1 parent 25d7c0d commit 2f2b5ff

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

minimatch.js

+2
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ function Minimatch (pattern, options) {
134134

135135
if (!options) options = {}
136136

137+
pattern = pattern.trim()
138+
137139
// windows support: need to use /, not \
138140
if (!options.allowWindowsEscape && path.sep !== '/') {
139141
pattern = pattern.split(path.sep).join('/')

test/basic.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,13 @@ t.test('whitespace handling', t => {
117117
t.equal(mm('x/y', 'y'), false)
118118
t.equal(mm('x/y', 'y', { matchBase: true }), true)
119119
t.equal(mm('x/ ', ' '), false)
120-
t.equal(mm('x/ ', ' ', { matchBase: true }), true)
120+
t.equal(mm('x/ ', ' ', { matchBase: true }), false)
121121
t.equal(mm('x/', ''), false)
122122
t.equal(mm('x/', '', { matchBase: true }), false)
123123
t.equal(mm('', ''), true)
124124
t.equal(mm(' ', ''), false)
125-
t.equal(mm('', ' '), false)
126-
t.equal(mm(' ', ' '), true)
125+
t.equal(mm('', ' '), true)
126+
t.equal(mm(' ', ' '), false)
127127
t.end()
128128
})
129129

@@ -165,6 +165,11 @@ t.test('flipNegate', t => {
165165
t.end()
166166
})
167167

168+
t.test('pattern should be trimmed', t => {
169+
t.equal(mm('x', ' x '), true)
170+
t.end()
171+
})
172+
168173
function alpha (a, b) {
169174
return a > b ? 1 : -1
170175
}

0 commit comments

Comments
 (0)