lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
10 lines (9 loc) • 313 B
JavaScript
import { promises as fsPromises } from "fs";
const { readFile } = fsPromises;
const filePromisesHash = {};
export const slurpFile = (path, options) => {
if (!filePromisesHash[path] || options?.ignoreCache) {
filePromisesHash[path] = readFile(path, "utf8");
}
return filePromisesHash[path];
};