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

backbone-db-redis

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backbone-db-redis - npm Package Compare versions

Comparing version 0.0.22 to 0.0.23

22

index.js

@@ -95,3 +95,8 @@ var _ = require('lodash'),

}
return this.name + (key ? ':' + key : '');
if (this.name !== '') {
return this.name + (key ? ':' + key : '');
} else {
return key;
}
},

@@ -102,3 +107,9 @@

var baseKey = model.dbBaseKey || model.type;
return this.name + ':i:' + baseKey + ':' + key + ':' + val;
var setKey = 'i:' + baseKey + ':' + key + ':' + val;
console.log('getValueSetKey', setKey, this.name);
if (this.name !== '') {
return this.name + ':' + setKey;
} else {
return setKey;
}
},

@@ -109,3 +120,8 @@

var baseKey = model.dbBaseKey || model.type;
return this.name + ':i:' + baseKey + ':' + sortProp;
var setKey = 'i:' + baseKey + ':' + sortProp;
if (this.name !== '') {
return this.name + ':' + setKey;
} else {
return setKey;
}
},

@@ -112,0 +128,0 @@

2

package.json
{
"name": "backbone-db-redis",
"version": "0.0.22",
"version": "0.0.23",
"description": "Redis driver for Backbone.Db",

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