Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const getContent = (xmlFile) => {
if (!fs.existsSync(xmlFile)) {
return false;
}
const xmlContent = fs.readFileSync(xmlFile);
return fxp.parse(xmlContent.toString(), fxpOptions);
};