We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e7a45 commit 2e39802Copy full SHA for 2e39802
1 file changed
cache/index.js
@@ -394,7 +394,6 @@ class LRUCache {
394
key: current.key,
395
age: this.readableAge(Date.now() - current.timestamp),
396
hits: current.hits,
397
- length: JSON.stringify(current.value).length,
398
bytes: Buffer.byteLength(JSON.stringify(current.value), 'utf8')
399
})
400
current = current.next
0 commit comments