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

cache-manager

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cache-manager - npm Package Compare versions

Comparing version 3.6.2 to 3.6.3

3

History.md

@@ -0,1 +1,4 @@

- 3.6.3 2022-05-20
- Remove import from the code in order to be able to bundle and minify the module (#191) - @ricardomozartlino
- 3.6.2 2022-05-19

@@ -2,0 +5,0 @@ - Use lodash.cloneDeep npm instead of full lodash. (#190). - @ricardomozartlino

@@ -5,4 +5,8 @@ /** @module cacheManager/caching */

var utils = require('./utils');
var memory = require('./stores/memory.js');
var none = require('./stores/none.js');
var parseWrapArguments = utils.parseWrapArguments;
var bundledStores = {memory, none};
/**

@@ -29,3 +33,3 @@ * Generic caching interface that wraps any caching library with a compatible interface.

var storeName = args.store || 'memory';
self.store = require('./stores/' + storeName + '.js').create(args);
self.store = bundledStores[storeName].create(args);
}

@@ -32,0 +36,0 @@

2

package.json
{
"name": "cache-manager",
"version": "3.6.2",
"version": "3.6.3",
"description": "Cache module for Node.js",

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