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

arangojs

Package Overview
Dependencies
Maintainers
2
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arangojs - npm Package Compare versions

Comparing version 3.3.1 to 3.4.0

6

lib/connection.js

@@ -69,3 +69,3 @@ /*jshint browserify: true */

}, function (err, response, rawBody) {
if (err) callback(err);
if (err) callback(err, rawBody, response);
else if (!response.headers['content-type'].match(jsonMime)) callback(null, rawBody, response);

@@ -75,6 +75,6 @@ else {

var body = JSON.parse(rawBody);
if (!body.error) callback(null, body);
if (!body.error) callback(null, body, response);
else callback(new ArangoError(body));
} catch (e) {
callback(e);
callback(e, rawBody, response);
}

@@ -81,0 +81,0 @@ }

{
"name": "arangojs",
"version": "3.3.1",
"version": "3.4.0",
"description": "The official ArangoDB JavaScript driver.",

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