This commit is contained in:
Alexandre Lachèze 2017-07-10 23:50:59 +02:00
Родитель 73e8769b1f
Коммит 969c74b886
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -6,7 +6,7 @@ const {runInThisContext} = require('vm')
const matchesPattern = function (pattern) {
if (pattern === '<all_urls>') return true
const regexp = new RegExp('^' + pattern.replace(/\*/g, '.*') + '$')
const url = location.protocol + '//' + location.host + location.pathname
const url = `${location.protocol}//${location.host}${location.pathname}`
return url.match(regexp)
}