Socket
Socket
Sign inDemoInstall

async-validator

Package Overview
Dependencies
Maintainers
2
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-validator - npm Package Compare versions

Comparing version 4.0.4 to 4.0.5

2

dist-node/index.js

@@ -348,3 +348,3 @@ 'use strict';

email(value) {
return typeof value === 'string' && !!value.match(pattern$2.email);
return typeof value === 'string' && value.length <= 320 && !!value.match(pattern$2.email);
},

@@ -351,0 +351,0 @@

@@ -340,3 +340,3 @@ import urlRegex from 'url-regex';

email(value) {
return typeof value === 'string' && !!value.match(pattern$2.email);
return typeof value === 'string' && value.length <= 320 && !!value.match(pattern$2.email);
},

@@ -343,0 +343,0 @@

{
"name": "async-validator",
"description": "validate form asynchronous",
"version": "4.0.4",
"version": "4.0.5",
"license": "MIT",

@@ -6,0 +6,0 @@ "files": [

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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