js-mvc-framework
Advanced tools
Comparing version 1.2.25 to 1.2.26
@@ -31,2 +31,3 @@ import Validator from '../../Validator/index.js' | ||
} | ||
validation.valid = valid | ||
return validation | ||
@@ -33,0 +34,0 @@ }, |
@@ -23,3 +23,4 @@ import Validator from '../../Validator/index.js' | ||
validation.min = min | ||
const validMin = (contentVal >= min) | ||
console.log($contentVal >= min) | ||
const validMin = ($contentVal >= min) | ||
if(valid !== false) valid = validMin | ||
@@ -29,5 +30,7 @@ } | ||
validation.max = max | ||
const validMax = (contentVal <= max) | ||
console.log($contentVal <= max) | ||
const validMax = ($contentVal <= max) | ||
if(valid !== false) valid = validMax | ||
} | ||
validation.valid = valid | ||
return validation | ||
@@ -34,0 +37,0 @@ }, |
{ | ||
"name": "js-mvc-framework", | ||
"author": "Thomas Patrick Welborn", | ||
"version": "1.2.25", | ||
"version": "1.2.26", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "scripts": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1679475
12955