Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

messy

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

messy - npm Package Compare versions

Comparing version 4.3.0 to 4.3.1

4

lib/RequestLine.js

@@ -77,3 +77,5 @@ function RequestLine(obj) {

}
return fragments.join('');
if (fragments.length > 0) {
return fragments.join('');
}
},

@@ -80,0 +82,0 @@ set: function (protocol) {

@@ -57,3 +57,12 @@ function StatusLine(obj) {

get: function () {
return String(this.protocolName).toUpperCase() + '/' + this.protocolVersion;
var fragments = [];
if (typeof this.protocolName !== 'undefined') {
fragments.push(String(this.protocolName).toUpperCase());
}
if (typeof this.protocolVersion !== 'undefined') {
fragments.push(this.protocolVersion);
}
if (fragments.length > 0) {
return fragments.join('/');
}
},

@@ -60,0 +69,0 @@ set: function (protocol) {

{
"name": "messy",
"version": "4.3.0",
"version": "4.3.1",
"description": "Object model for HTTP and RFC822 messages",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc