New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grex

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grex - npm Package Compare versions

Comparing version 0.6.6 to 0.6.7

test/argument.js

3

CHANGES.md

@@ -0,1 +1,4 @@

## 0.6.7
- Fix stringification issues with arrays and booleans
## 0.6.6

@@ -2,0 +5,0 @@ - Handle stringification of nested objects

2

package.json
{
"name": "grex",
"description": "Client for Rexster Graph Server",
"version": "0.6.6",
"version": "0.6.7",
"keywords": [

@@ -6,0 +6,0 @@ "database",

@@ -36,2 +36,18 @@ /*jslint node: true */

if (_.isArray(argument)) {
var parsedArray = _.map(argument, function(element) {
if (_.isString(element)) {
return "'" + element + "'";
}
return element;
});
return parsedArray.toString();
}
if (_.isBoolean(argument)) {
return argument.toString();
}
return "'"+ argument +"'";

@@ -52,2 +68,2 @@ };

return Argument;
})();
})();
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