Skip to content

Commit 6e908b5

Browse files
committed
Speed up pattern matching
1 parent 90ceb42 commit 6e908b5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

modules/PatternUtils.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ function _compilePattern(pattern) {
2424
regexpSource += '([^/?#]+)'
2525
paramNames.push(match[1])
2626
} else if (match[0] === '**') {
27-
regexpSource += '([\\s\\S]*)'
27+
regexpSource += '(.*)'
2828
paramNames.push('splat')
2929
} else if (match[0] === '*') {
30-
regexpSource += '([\\s\\S]*?)'
30+
regexpSource += '(.*?)'
3131
paramNames.push('splat')
3232
} else if (match[0] === '(') {
3333
regexpSource += '(?:'
@@ -98,8 +98,7 @@ export function matchPattern(pattern, pathname) {
9898
const captureRemaining = tokens[tokens.length - 1] !== '*'
9999

100100
if (captureRemaining) {
101-
// This will match newlines in the remaining path.
102-
regexpSource += '([\\s\\S]*?)'
101+
regexpSource += '(.*?)'
103102
}
104103

105104
const match = pathname.match(new RegExp('^' + regexpSource + '$', 'i'))

modules/__tests__/getParams-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describe('getParams', function () {
120120
expect(getParams('/files/*', '/files/my/photo.jpg')).toEqual({ splat: 'my/photo.jpg' })
121121
expect(getParams('/files/*', '/files/my/photo.jpg.zip')).toEqual({ splat: 'my/photo.jpg.zip' })
122122
expect(getParams('/files/*.jpg', '/files/my/photo.jpg')).toEqual({ splat: 'my/photo' })
123-
expect(getParams('/files/*.jpg', '/files/my/new\nline.jpg')).toEqual({ splat: 'my/new\nline' })
123+
expect(getParams('/files/*.jpg', '/files/my/new%0Aline.jpg')).toEqual({ splat: 'my/new\nline' })
124124
})
125125
})
126126

0 commit comments

Comments
 (0)