Files
beall/node_modules/@11ty/eleventy-img/src/caches.js
2026-03-31 16:38:22 -07:00

17 lines
354 B
JavaScript

const MemoryCache = require("./memory-cache.js");
const DiskCache = require("./disk-cache.js");
const ExistsCache = require("./exists-cache.js");
let memCache = new MemoryCache();
let existsCache = new ExistsCache();
let diskCache = new DiskCache();
diskCache.setExistsCache(existsCache);
module.exports = {
memCache,
diskCache,
existsCache
};