chore(): upgrade deps

This commit is contained in:
Kamil Myśliwiec
2021-06-28 13:11:40 +02:00
parent 94382867d9
commit 90655d444b
5 changed files with 833 additions and 1134 deletions

View File

@@ -97,7 +97,7 @@ export function isRouteExcluded(
if (
RequestMethod.ALL === method ||
RequestMethod[method] === reqMethod ||
method === -1
(method as number) === -1
) {
return regex.exec(pathname);
}