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

thinky

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thinky - npm Package Compare versions

Comparing version 2.3.3 to 2.3.4

4

lib/type/string.js

@@ -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",

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