import fs from'node:fs';
/**
* Test whether a file exists
* @param {string} filePath - Path to File, should include directory and extension
*/exportconstensureFileExistence = (filePath) => {
if (fs.existsSync(filePath)) {
returntrue;
}
returnfalse;
};