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

mastercheck

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mastercheck - npm Package Compare versions

Comparing version 0.1.0 to 0.1.2

8

lib/mastercheck.js

@@ -41,3 +41,3 @@ /**

this.check = function(data) {
if (!option.required && typeof data === 'undefined') {
if (!option.required && (data === null || data === undefined)) {
return true;

@@ -72,3 +72,3 @@ }

this.check = function(data) {
if (!option.required && typeof data === 'undefined') {
if (!option.required && (data === null || data === undefined)) {
return true;

@@ -106,3 +106,3 @@ }

this.check = function(data) {
if (!option.required && typeof data === 'undefined') {
if (!option.required && (data === null || data === undefined)) {
return true;

@@ -126,3 +126,3 @@ }

this.check = function(data) {
if (!option.required && typeof data === 'undefined') {
if (!option.required && ( data === null || data === undefined)) {
return true;

@@ -129,0 +129,0 @@ }

{
"name": "mastercheck",
"version": "0.1.0",
"version": "0.1.2",
"description": "mastercheck",

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

@@ -8,3 +8,3 @@ MasterCheck

```
npm install mastercheck.git
npm install mastercheck
```

@@ -11,0 +11,0 @@

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