New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

smtp-channel

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smtp-channel - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

10

package.json
{
"name": "smtp-channel",
"version": "0.2.2",
"version": "0.2.3",
"description": "Low level SMTP communication layer.",

@@ -39,9 +39,9 @@ "main": "./src/index.js",

"devDependencies": {
"ava": "0.16.x",
"maildev": "0.14.x"
"ava": "^0.16.0",
"maildev": "^0.14.0"
},
"dependencies": {
"line-buffer": "0.1.x",
"promised-timeout": "0.2.x"
"line-buffer": "^0.1.4",
"promised-timeout": "^0.2.0"
}
}

@@ -244,3 +244,5 @@ const net = require('net');

let onClose = () => { // socket unexpectedly closed
this._socket.removeListener('error', onError);
if(this._socket) {
this._socket.removeListener('error', onError);
}
this._receiveBuffer.removeListener('line', onLine);

@@ -247,0 +249,0 @@ reject(new Error('Socket has closed unexpectedly'));

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