Socket
Socket
Sign inDemoInstall

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.9.0 to 3.9.1

4

lib/util/promisify.js

@@ -5,3 +5,3 @@ 'use strict';

return function () {
var callback = arguments[0] === undefined ? function () {} : arguments[0];
var callback = arguments.length <= 0 || arguments[0] === undefined ? function () {} : arguments[0];

@@ -13,3 +13,3 @@ return { callback: callback };

return function () {
var callback = arguments[0] === undefined ? function () {} : arguments[0];
var callback = arguments.length <= 0 || arguments[0] === undefined ? function () {} : arguments[0];

@@ -16,0 +16,0 @@ if (!PromiseCtor && typeof Promise !== 'function') {

@@ -9,4 +9,4 @@ 'use strict';

function joinPath() {
var a = arguments[0] === undefined ? '' : arguments[0];
var b = arguments[1] === undefined ? '' : arguments[1];
var a = arguments.length <= 0 || arguments[0] === undefined ? '' : arguments[0];
var b = arguments.length <= 1 || arguments[1] === undefined ? '' : arguments[1];

@@ -13,0 +13,0 @@ if (!a && !b) return '';

{
"name": "arangojs",
"version": "3.9.0",
"version": "3.9.1",
"description": "The official ArangoDB JavaScript driver.",

@@ -52,8 +52,8 @@ "main": "index.js",

"devDependencies": {
"async": "^0.9.2",
"async": "^1.4.0",
"babel": "^5.2.17",
"browserify": "^10.1.3",
"browserify": "^11.0.1",
"coveralls": "^2.11.2",
"dekeywordify": "^0.2.1",
"eslint": "^0.21.0",
"eslint": "^1.0.0",
"expect.js": "^0.3.1",

@@ -66,5 +66,5 @@ "istanbul": "^0.3.14",

"dependencies": {
"extend": "^2.0.1",
"extend": "^3.0.0",
"linkedlist": "^1.0.1"
}
}
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