serverless-spy
Version:
CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.
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];
};