@11ty/eleventy-img
Version:
Low level utility to perform build-time image transformations.
41 lines (30 loc) • 740 B
JavaScript
const fs = require("node:fs");
const Util = require("./util.js");
// Checks both files and directories
class ExistsCache {
#exists = new Map();
constructor() {
this.lookupCount = 0;
}
get size() {
return this.#exists.size;
}
has(path) {
return this.#exists.has(path);
}
// Relative paths (to root directory) expected (but not enforced due to perf costs)
exists(path) {
if(Util.isFullUrl(path)) {
return false;
}
if (!this.#exists.has(path)) {
let exists = fs.existsSync(path);
this.lookupCount++;
// mark for next time
this.#exists.set(path, Boolean(exists));
return exists;
}
return this.#exists.get(path);
}
}
module.exports = ExistsCache;