"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.createLruCache = void 0;
const tiny_lru_1 = require("tiny-lru");
function createLruCache(max, ttl) {
return (0, tiny_lru_1.lru)(max, ttl);
}
exports.createLruCache = createLruCache;