Socket
Socket
Sign inDemoInstall

node-cypher

Package Overview
Dependencies
30
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.3 to 0.0.4

6

lib/NeoHttpClient.js

@@ -59,3 +59,3 @@ var _ = require('underscore');

var self = this ;
var pending = self._requests ;
var pending = self._requests.splice(0,Infinity) ; // empty out batch _requests and add to pending array.
var done = cb || function(){};

@@ -90,2 +90,6 @@ function runIteration () {

if ( wasFailedRequest ) {
// every time a failing item is removed from the batch, reverse
// the local "pending" queue. We want to continuously remove
// failable items from the tail, normalizing batch sizes if possible.
pending.reverse();
setImmediate(runIteration);

@@ -92,0 +96,0 @@ } else {

2

package.json
{
"name": "node-cypher",
"version": "0.0.3",
"version": "0.0.4",
"description": "Cypher-only interface to neo4j over http, optimized for speed",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc