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

simple-email-verifier

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-email-verifier - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"name": "simple-email-verifier",
"version": "1.0.2",
"version": "1.0.3",
"description": "Email verification by looking for SMTP records and account existence checking",

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

@@ -7,3 +7,2 @@ const util = require("util");

const CONNECTION_EVENT_CODES = {

@@ -125,3 +124,2 @@ HANDHSKAKE: "handshake",

let dataString = dataBytes.toString();
let commands = dataString.split('\r\n').filter(r => r);

@@ -143,2 +141,5 @@ commands = commands.map(command => {

client.end();
if (error.fullCode === 550) {
return resolve(false);
}
return reject(new Error(error.message))

@@ -145,0 +146,0 @@ } else {

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