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

checkv

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

checkv - npm Package Compare versions

Comparing version 0.0.7-dev to 0.0.8-dev

1

lib/Check.js

@@ -60,2 +60,3 @@ 'use strict'

case 'isString':
case 'isEmail':
_match = _compare === validate.string[rule](value)

@@ -62,0 +63,0 @@ break

@@ -12,2 +12,8 @@ 'use strict'

return string.isString(value) && value.length > than
},
isEmail: function (value) {
if (!value || !string.isString(value)) {
return false
}
return (/^[\w\.-]+@[\w\.-]+$/i).test(value)
}

@@ -14,0 +20,0 @@ }

2

package.json
{
"name": "checkv",
"version": "0.0.7-dev",
"version": "0.0.8-dev",
"description": "javascript idiomatic validator",

@@ -5,0 +5,0 @@ "main": "main.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