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

email-validator-js-test

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

email-validator-js-test - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

22

index.js

@@ -13,2 +13,22 @@ function isEmail(email) {

module.exports = {isEmail,isEmpty,getDominan}
function TextField({ id, placeholder, asterisk, label, onChange, index=0, value ,type,disabled=false,className}) {
return (
<div class={className} key={index}>
<input
name={id}
placeholder={placeholder}
value={value}
id={id}
type={type}
disabled={disabled}
onChange={onChange}
/>
<label htmlFor={id} >
{label} <span class="asterisk">{asterisk}</span>
</label>
</div>
)
}
module.exports = {isEmail,isEmpty,getDominan,TextField}

2

package.json
{
"name": "email-validator-js-test",
"version": "1.1.0",
"version": "1.2.0",
"description": "email validation using email-validator.js",

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

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