|
self.del = (key, options, cb) => { |
The delete method does not appear to be wrapped in a Promise, giving it a different signature to the other methods. Believe it is supposed to?
self.del = (key, options, cb) => {
if (typeof options === 'function') {
cb = options;
}
redisCache.del(key, handleResponse(cb));
};
node-cache-manager-ioredis/index.js
Line 69 in 3bf4514
The delete method does not appear to be wrapped in a Promise, giving it a different signature to the other methods. Believe it is supposed to?