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

qs2mongo

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qs2mongo - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

16

lib/qs2mongo.js

@@ -162,8 +162,12 @@ (function() {

argument = operand.source || operand;
if ((operator === "in" || operator === "nin") && _.isString(argument)) {
argument = argument.split(',').map((function(_this) {
return function(it) {
return _this._castByName(name, it);
};
})(this));
if (operator === "in" || operator === "nin") {
if (_.isString(argument)) {
argument = argument.split(',').map((function(_this) {
return function(it) {
return _this._castByName(name, it);
};
})(this));
} else {
argument = _.castArray(argument);
}
}

@@ -170,0 +174,0 @@ return (

{
"name": "qs2mongo",
"version": "1.0.0",
"version": "1.0.1",
"description": "qs2mongo",

@@ -5,0 +5,0 @@ "main": "index.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