cache-manager
Advanced tools
Comparing version 2.9.0 to 2.9.1
@@ -0,3 +1,6 @@ | ||
- 2.9.1 2019-05-28 | ||
- Bind isCacheableValue to its underlying store (#126). - @arash16 | ||
- 2.9.0 2018-03-26 | ||
- Fix store's this context for isCacheableValue method (#119). -@alexandrusavin | ||
- Fix store's this context for isCacheableValue method (#119). - @alexandrusavin | ||
@@ -4,0 +7,0 @@ - 2.8.0 2018-02-28 |
@@ -48,3 +48,3 @@ /** @module cacheManager/multiCaching */ | ||
if (cache.store && typeof cache.store.isCacheableValue === 'function') { | ||
return cache.store.isCacheableValue; | ||
return cache.store.isCacheableValue.bind(cache.store); | ||
} else { | ||
@@ -51,0 +51,0 @@ return self._isCacheableValue; |
{ | ||
"name": "cache-manager", | ||
"version": "2.9.0", | ||
"version": "2.9.1", | ||
"description": "Cache module for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
198467
26