Socket
Socket
Sign inDemoInstall

async-validator

Package Overview
Dependencies
Maintainers
1
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 1.8.0 to 1.8.1

2

es/rule/type.js

@@ -50,3 +50,3 @@ import _typeof from 'babel-runtime/helpers/typeof';

email: function email(value) {
return typeof value === 'string' && !!value.match(pattern.email);
return typeof value === 'string' && !!value.match(pattern.email) && value.length < 255;
},

@@ -53,0 +53,0 @@ url: function url(value) {

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

email: function email(value) {
return typeof value === 'string' && !!value.match(pattern.email);
return typeof value === 'string' && !!value.match(pattern.email) && value.length < 255;
},

@@ -71,0 +71,0 @@ url: function url(value) {

{
"name": "async-validator",
"version": "1.8.0",
"version": "1.8.1",
"description": "validate form asynchronous",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc