UNPKG

@aws/cloudfront-hosting-toolkit

Version:

CloudFront Hosting Toolkit offers the convenience of a managed frontend hosting service while retaining full control over the hosting and deployment infrastructure to make it your own.

10 lines (9 loc) 313 B
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]; };