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

mailparser

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailparser - npm Package Compare versions

Comparing version 0.4.6 to 0.4.7

9

lib/mailparser.js

@@ -520,2 +520,5 @@ "use strict";

break;
case "content-location":
this._currentNode.meta.location = value.toLowerCase();
break;
case "subject":

@@ -639,2 +642,6 @@ this._currentNode.subject = this._encodeString(value);

value.charset = "utf-8";
} else if (value.charset.match(/^ansi_x3\.4\-19/)) {
// ANSI_X3.4-1968 and ANSI_X3.4-1986 are aliases for ASCII.
// See http://en.wikipedia.org/wiki/ASCII#Aliases
value.charset = "utf-8";
}

@@ -1408,2 +1415,2 @@ this._currentNode.meta.charset = value.charset;

return charset;
};
};

2

package.json
{
"name": "mailparser",
"description": "Asynchronous and non-blocking parser for mime encoded e-mail messages",
"version": "0.4.6",
"version": "0.4.7",
"author": "Andris Reinman",

@@ -6,0 +6,0 @@ "maintainers": [

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