email-validator-helper
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"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); |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
10831
267
2
No