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

fenextjs-validator

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fenextjs-validator - npm Package Compare versions

Comparing version 1.0.17 to 1.0.18

8

cjs/index.js

@@ -471,3 +471,3 @@ "use strict";

if (this.#min &&
!(minValidate && nMinValue && minValidate > nMinValue)) {
!(minValidate != undefined && nMinValue && minValidate > nMinValue)) {
this.#onError(fenextjs_interface_1.ErrorCode.INPUT_VALUE_TOO_LOW);

@@ -478,3 +478,3 @@ }

if (this.#minOrEqual &&
!(minValidate && nMinValue && minValidate >= nMinValue)) {
!(minValidate != undefined && nMinValue && minValidate >= nMinValue)) {
this.#onError(fenextjs_interface_1.ErrorCode.INPUT_VALUE_TOO_LOW);

@@ -535,3 +535,3 @@ }

if (this.#max &&
!(maxValidate && nMaxValue && maxValidate < nMaxValue)) {
!(maxValidate != undefined && nMaxValue && maxValidate < nMaxValue)) {
this.#onError(fenextjs_interface_1.ErrorCode.INPUT_VALUE_TOO_HIGH);

@@ -542,3 +542,3 @@ }

if (this.#maxOrEqual &&
!(maxValidate && nMaxValue && maxValidate <= nMaxValue)) {
!(maxValidate != undefined && nMaxValue && maxValidate <= nMaxValue)) {
this.#onError(fenextjs_interface_1.ErrorCode.INPUT_VALUE_TOO_HIGH);

@@ -545,0 +545,0 @@ }

{
"name": "fenextjs-validator",
"version": "1.0.17",
"version": "1.0.18",
"description": "",

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

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