|
|
@ -1,4 +1,4 @@ |
|
|
|
/*jshint maxcomplexity:10*/ |
|
|
|
/*jshint maxcomplexity:15*/ |
|
|
|
var caching = function (args) { |
|
|
|
args = args || {}; |
|
|
|
var self = {}; |
|
|
@ -78,7 +78,9 @@ var caching = function (args) { |
|
|
|
|
|
|
|
self.set = self.store.set.bind(self.store); |
|
|
|
|
|
|
|
self.del = self.store.del.bind(self.store); |
|
|
|
if (typeof self.store.del === 'function') { |
|
|
|
self.del = self.store.del.bind(self.store); |
|
|
|
} |
|
|
|
|
|
|
|
if (typeof self.store.setex === 'function') { |
|
|
|
self.setex = self.store.setex.bind(self.store); |
|
|
|