Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sessionstore

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sessionstore - npm Package Compare versions

Comparing version 0.2.7 to 0.2.8

8

lib/sessionstore.js

@@ -20,3 +20,3 @@ function getSpecificStore(options) {

var moduleName = err.message.substring(err.message.indexOf("'") + 1, err.message.lastIndexOf("'"));
console.log('Please install "' + moduleName + '" to work with db implementation "' + options.type + '"!');
console.log('Please install module "' + moduleName + '" to work with db implementation "' + options.type + '"!');
}

@@ -33,6 +33,6 @@

module.exports = {
createSessionStore: function(options) {
createSessionStore: function(options, callback) {
var Store = getSpecificStore(options);
return new Store(options);
return new Store(options, callback);
}
};
};
{
"author": "adrai",
"name": "sessionstore",
"version": "0.2.7",
"version": "0.2.8",
"private": false,

@@ -6,0 +6,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