Skip to content

Commit

Permalink
fix: add QUERY httpMethods which is new in v22
Browse files Browse the repository at this point in the history
  • Loading branch information
andokai authored Sep 24, 2024
1 parent 6a98d20 commit 2ca50da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/http-methods.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'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 = [
'ACL', 'BIND', 'CHECKOUT', 'CONNECT', 'COPY', 'DELETE',
'GET', 'HEAD', 'LINK', 'LOCK', 'M-SEARCH', 'MERGE',
'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',
'UNBIND', 'UNLINK', 'UNLOCK', 'UNSUBSCRIBE'
]
Expand Down

0 comments on commit 2ca50da

Please sign in to comment.