summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lru-cache/lib/lru-cache.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/lru-cache/lib/lru-cache.js')
-rw-r--r--deps/npm/node_modules/lru-cache/lib/lru-cache.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/deps/npm/node_modules/lru-cache/lib/lru-cache.js b/deps/npm/node_modules/lru-cache/lib/lru-cache.js
index 575b4476c..d66e7a238 100644
--- a/deps/npm/node_modules/lru-cache/lib/lru-cache.js
+++ b/deps/npm/node_modules/lru-cache/lib/lru-cache.js
@@ -238,7 +238,6 @@ function isStale(self, hit) {
function use (self, hit) {
shiftLU(self, hit)
hit.lu = self._mru ++
- if (self._maxAge) hit.now = Date.now()
self._lruList[hit.lu] = hit
}