Comparing version 2.3.3 to 2.3.4
@@ -344,6 +344,6 @@ var util = require(__dirname+'/../util.js'); | ||
if ((this._min !== -1) && (this._min > str.length)){ | ||
throw new Errors.ValidationError("Value for "+prefix+" must be longer than "+this._min+".") | ||
throw new Errors.ValidationError("Value for "+prefix+" must not be shorter than "+this._min+".") | ||
} | ||
if ((this._max !== -1) && (this._max < str.length)){ | ||
throw new Errors.ValidationError("Value for "+prefix+" must be shorter than "+this._max+".") | ||
throw new Errors.ValidationError("Value for "+prefix+" must not be longer than "+this._max+".") | ||
} | ||
@@ -350,0 +350,0 @@ if ((this._length !== -1) && (this._length !== str.length)){ |
{ | ||
"name": "thinky", | ||
"version": "2.3.3", | ||
"version": "2.3.4", | ||
"description": "RethinkDB ORM for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "lib/thinky.js", |
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
222062