Comparing version 6.16.0 to 6.17.0
@@ -13,3 +13,3 @@ /*global btoa*/ | ||
HttpRequest.metadataPropertyNames = ['host', 'port', 'encrypted', 'cert', 'key', 'ca', 'rejectUnauthorized']; | ||
HttpRequest.metadataPropertyNames = ['host', 'port', 'encrypted', 'cert', 'key', 'ca', 'rejectUnauthorized', 'credentials']; | ||
@@ -16,0 +16,0 @@ var ownPropertyNames = ['requestLine'].concat(RequestLine.propertyNames).concat(HttpRequest.metadataPropertyNames); |
{ | ||
"name": "messy", | ||
"version": "6.16.0", | ||
"version": "6.17.0", | ||
"description": "Object model for HTTP and RFC822 messages", | ||
@@ -24,3 +24,3 @@ "main": "lib/index.js", | ||
], | ||
"author": "Andreas Lind <andreas@one.com>", | ||
"author": "Andreas Lind <andreaslindpetersen@gmail.com>", | ||
"repository": "git://github.com/papandreou/messy.git", | ||
@@ -27,0 +27,0 @@ "license": "BSD", |
@@ -12,2 +12,6 @@ /*global describe, it*/ | ||
it('should allow the credentials property to be passed (for fetch)', function () { | ||
new HttpRequest({ credentials: 'same-origin' }); | ||
}); | ||
it('should parse a standalone request line', function () { | ||
@@ -14,0 +18,0 @@ var httpRequest = new HttpRequest('GET /foo HTTP/1.1'); |
Sorry, the diff of this file is not supported yet
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
185847
3915