Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@expressen/tallahassee

Package Overview
Dependencies
Maintainers
12
Versions
207
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expressen/tallahassee - npm Package Compare versions

Comparing version 13.1.0 to 13.1.1

4

CHANGELOG.md

@@ -6,2 +6,6 @@ Changelog

## 13.1.1
- fix "valid" email pattern, allow proper email to pass, and some strange ones like `.@.` which is apparently accepted by Chrome
## 13.1.0

@@ -8,0 +12,0 @@

3

lib/ValidityState.js
"use strict";
const kParent = Symbol.for("parent");
const emailPattern = /^([^@\s])+@([^@\s])+$/;

@@ -86,3 +87,3 @@ class ValidateInput {

case "email":
return !/^\w+@\w+$/.test(this.value);
return !emailPattern.test(this.value);
}

@@ -89,0 +90,0 @@ return false;

{
"name": "@expressen/tallahassee",
"version": "13.1.0",
"version": "13.1.1",
"description": "Lightweight client testing framework",

@@ -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