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

mongoose-harmony-gridfs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongoose-harmony-gridfs - npm Package Compare versions

Comparing version

to
0.1.2

10

index.js

@@ -24,8 +24,10 @@ 'use strict';

var id = this.get(linkPropertyName + '.' + key),
gridFS = new Grid(mongoose.connection.db, bucket);
gridFS = Grid(mongoose.connection.db, bucket);
return Q.Promise(function(resolve, reject, notify){
if (id == null) return resolve(null);
gridFS.get(id, function(err, buffer){
if (err) reject(err);
resolve(buffer);
if (err) resolve(null);
else resolve(buffer);
});

@@ -36,3 +38,3 @@ });

var self = this,
gridFS = new Grid(mongoose.connection.db),
gridFS = Grid(mongoose.connection.db),
buffer = new Buffer(value),

@@ -39,0 +41,0 @@ previous = this.get(linkPropertyName + '.' + key);

2

package.json
{
"name": "mongoose-harmony-gridfs",
"version": "0.1.1",
"version": "0.1.2",
"description": "Mongoose plugin for GridFS based on ES6 Harmony",

@@ -5,0 +5,0 @@ "author": "Dexter Miguel <divmgl@gmail.com>",