in lib/utils/utilities.js [181:192]
function doesFileExist (filePath) {
let fileExists = false;
try {
fs.statSync(filePath);
fileExists = true;
} catch (e) {
fileExists = false;
}
return fileExists;
}