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

email-validator-helper

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

email-validator-helper - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

index.cjs

9

package.json
{
"name": "email-validator-helper",
"version": "0.0.1",
"version": "0.0.2",
"author": "Artur J Medeiros <web@arjos.com.br>",
"description": "This package provides your application with several types of email validation: syntax, domain, MX server, and much more.",
"type": "module",
"main": "index.mjs",
"main": "index.cjs",
"types": "index.d.ts",
"scripts": {
"start": "node index.mjs",
"dev": "nodemon index.mjs"
"start": "node index.cjs",
"dev": "nodemon index.cjs"
},

@@ -13,0 +12,0 @@ "engines": {

@@ -1,3 +0,10 @@

import EmailValidator from "./index.mjs";
const Validator = new EmailValidator()
console.log(await Validator.verify("user@mail.com"));
const EmailValidator = require("./index.cjs")
// import EmailValidator from "./index.mjs";
// const Validator = new EmailValidator()
// console.log(await Validator.verify("user@mail.com"));
// console.log("Aqui", new EmailValidator().serialAsyncMap("user@mail.com"));
// let test = new EmailValidator().serialAsyncMap("mail@mail.com");
// console.log(test);
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