UNPKG
@tunframework/tun
Version:
latest (2.0.7)
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
tun framework for node with typescript
github.com/tunframework/tun
tunframework/tun
@tunframework/tun
/
lib
/
esm
/
constants
/
http
/
HttpMethod.js
15 lines
(14 loc)
•
296 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods */
export
const HttpMethod = { GET:
'GET'
, HEAD:
'HEAD'
, POST:
'POST'
, PUT:
'PUT'
, DELETE:
'DELETE'
, CONNECT:
'CONNECT'
, OPTIONS:
'OPTIONS'
, TRACE:
'TRACE'
, PATCH:
'PATCH'
};