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.1.7 to 0.1.8

2

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

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

@@ -276,8 +276,6 @@ const net = require('net');

let chars = data.split('')
return new stream.Readable({
read: function(size) {
this.push(chars.shift());
}
});
let rs = new stream.Readable();
rs.push(data);
rs.push(null);
return rs;
}

@@ -284,0 +282,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