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 3.6.2 to 3.6.3

17

lib/mail-parser.js

@@ -276,4 +276,9 @@ 'use strict';

let finish = () => {
let t = this.getTextContent();
this.push(t);
try {
let t = this.getTextContent();
this.push(t);
} catch (err) {
return this.emit('error', err);
}
done();

@@ -753,5 +758,7 @@ };

alternative = alternative || node.contentType === 'multipart/alternative';
node.children.forEach(subNode => {
processNode(alternative, level + 1, subNode);
});
if (node.children) {
node.children.forEach(subNode => {
processNode(alternative, level + 1, subNode);
});
}
};

@@ -758,0 +765,0 @@

{
"name": "mailparser",
"version": "3.6.2",
"version": "3.6.3",
"description": "Parse e-mails",

@@ -21,3 +21,3 @@ "main": "index.js",

"he": "1.2.0",
"html-to-text": "9.0.2",
"html-to-text": "9.0.3",
"iconv-lite": "0.6.3",

@@ -28,7 +28,7 @@ "libmime": "5.2.0",

"nodemailer": "6.8.0",
"tlds": "1.235.0"
"tlds": "1.236.0"
},
"devDependencies": {
"ajv": "8.11.2",
"eslint": "8.29.0",
"eslint": "8.30.0",
"eslint-config-nodemailer": "1.2.0",

@@ -35,0 +35,0 @@ "eslint-config-prettier": "8.5.0",

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