All files / src/http/enum header.ts

100% Statements 24/24
100% Branches 2/2
100% Functions 1/1
100% Lines 24/24

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2724x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x     24x  
enum Header {
	ACCEPT = 'accept',
	ACCESS_CONTROL_ALLOW_CREDENTIALS = 'access-control-allow-credentials',
	ACCESS_CONTROL_ALLOW_HEADERS = 'access-control-allow-headers',
	ACCESS_CONTROL_ALLOW_METHODS = 'access-control-allow-methods',
	ACCESS_CONTROL_ALLOW_ORIGIN = 'access-control-allow-origin',
	ACCESS_CONTROL_REQUEST_HEADERS = 'access-control-request-headers',
	AUTHORIZATION = 'authorization',
	CONNECTION = 'connection',
	CONTENT_LENGTH = 'content-length',
	CONTENT_TYPE = 'content-type',
	COOKIE = 'cookie',
	DATE = 'date',
	ETAG = 'etag',
	HOST = 'host',
	IF_MODIFIED_SINCE = 'if-modified-since',
	IF_NONE_MATCH = 'if-none-match',
	LAST_MODIFIED = 'last-modified',
	LOCATION = 'location',
	ORIGIN = 'origin',
	SET_COOKIE = 'set-cookie',
	TRANSFER_ENCODING = 'transfer-encoding',
	USER_AGENT = 'user-agent'
}
 
export default Header;