Socket
Socket
Sign inDemoInstall

nodemailer-smtp-pool

Package Overview
Dependencies
4
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.4.0 to 2.5.0

5

.eslintrc.js

@@ -55,3 +55,6 @@ 'use strict';

extends: 'eslint:recommended',
fix: true
fix: true,
globals: {
Promise: false
}
};

@@ -391,3 +391,10 @@ 'use strict';

SMTPPool.prototype.verify = function (callback) {
var promise;
if (!callback && typeof Promise === 'function') {
promise = new Promise(function (resolve, reject) {
callback = shared.callbackPromise(resolve, reject);
});
}
this.getSocket(this.options, function (err, socketOptions) {

@@ -460,2 +467,4 @@ if (err) {

}.bind(this));
return promise;
};

2

package.json
{
"name": "nodemailer-smtp-pool",
"version": "2.4.0",
"version": "2.5.0",
"description": "SMTP transport for Nodemailer",

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc