mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-03 19:11:22 +01:00
feat: update lru-cache to 9.x, closes #11454
This commit is contained in:
4
src/cache/lru.js
vendored
4
src/cache/lru.js
vendored
@@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (opts) {
|
||||
const LRU = require('lru-cache');
|
||||
const { LRUCache } = require('lru-cache');
|
||||
const pubsub = require('../pubsub');
|
||||
|
||||
// lru-cache@7 deprecations
|
||||
@@ -28,7 +28,7 @@ module.exports = function (opts) {
|
||||
}
|
||||
});
|
||||
|
||||
const lruCache = new LRU(opts);
|
||||
const lruCache = new LRUCache(opts);
|
||||
|
||||
const cache = {};
|
||||
cache.name = opts.name;
|
||||
|
||||
Reference in New Issue
Block a user