UNPKG

awscdk-construct-scte-scheduler

Version:

AWS CDK Construct for scheduling SCTE-35 events using the MediaLive schedule API

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]; };