4 lines
75 B
JavaScript
4 lines
75 B
JavaScript
const LRU = require('lru-cache');
|
|
|
|
module.exports = new LRU({ max: 100 });
|