find-my-way
Advanced tools
Comparing version 9.0.1 to 9.1.0
'use strict' | ||
// defined by Node.js http module, a snapshot from Node.js 18.12.0 | ||
// defined by Node.js http module, a snapshot from Node.js 22.9.0 | ||
const httpMethods = [ | ||
@@ -8,3 +8,3 @@ 'ACL', 'BIND', 'CHECKOUT', 'CONNECT', 'COPY', 'DELETE', | ||
'MKACTIVITY', 'MKCALENDAR', 'MKCOL', 'MOVE', 'NOTIFY', 'OPTIONS', | ||
'PATCH', 'POST', 'PROPFIND', 'PROPPATCH', 'PURGE', 'PUT', | ||
'PATCH', 'POST', 'PROPFIND', 'PROPPATCH', 'PURGE', 'PUT', 'QUERY', | ||
'REBIND', 'REPORT', 'SEARCH', 'SOURCE', 'SUBSCRIBE', 'TRACE', | ||
@@ -11,0 +11,0 @@ 'UNBIND', 'UNLINK', 'UNLOCK', 'UNSUBSCRIBE' |
{ | ||
"name": "find-my-way", | ||
"version": "9.0.1", | ||
"version": "9.1.0", | ||
"description": "Crazy fast http radix based router", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -676,4 +676,4 @@ 'use strict' | ||
M-SEARCH, MERGE, MKACTIVITY, MKCALENDAR, MKCOL, MOVE, NOTIFY, OPTIONS, PATCH, \ | ||
POST, PROPFIND, PROPPATCH, PURGE, PUT, REBIND, REPORT, SEARCH, SOURCE, SUBSCRIBE, \ | ||
TRACE, UNBIND, UNLINK, UNLOCK, UNSUBSCRIBE) | ||
POST, PROPFIND, PROPPATCH, PURGE, PUT, QUERY, REBIND, REPORT, SEARCH, SOURCE, \ | ||
SUBSCRIBE, TRACE, UNBIND, UNLINK, UNLOCK, UNSUBSCRIBE) | ||
` | ||
@@ -680,0 +680,0 @@ t.equal(typeof tree, 'string') |
@@ -270,3 +270,3 @@ 'use strict' | ||
findMyWay.on('GET', '/:foo-:bar-', (req, res, params) => {}) | ||
findMyWay.find('GET', '/' + '-'.repeat(16_000) + 'a', { host: 'fastify.io' }) | ||
findMyWay.find('GET', '/' + '-'.repeat(16000) + 'a', { host: 'fastify.io' }) | ||
}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
385818