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

mongojs

Package Overview
Dependencies
Maintainers
2
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongojs - npm Package Compare versions

Comparing version 0.7.1 to 0.7.2

8

index.js

@@ -75,4 +75,8 @@ var mongodb = require('mongodb');

Cursor.prototype._read = function(size, callback) { // 0.10 stream support (0.8 compat using readable-stream)
this.next(callback);
Cursor.prototype._read = function() { // 0.10 stream support (0.8 compat using readable-stream)
var self = this;
this.next(function(err, data) {
if (err) return self.emit('error', err);
self.push(data);
});
};

@@ -79,0 +83,0 @@

@@ -9,3 +9,3 @@ {

],
"version": "0.7.1",
"version": "0.7.2",
"repository": "git://github.com/gett/mongojs.git",

@@ -20,3 +20,3 @@ "author": "Ge.tt <hello@ge.tt>",

"thunky": "~0.1.0",
"readable-stream": "~0.3.1"
"readable-stream": "~1.0.2"
},

@@ -23,0 +23,0 @@ "scripts": {

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