const { URL, SITE_TITLE, FAVICON } = require('../../config.js'); const favicon = FAVICON || `${URL}/public/favicon.png`; function getOpenSearchXml() { return ( `${SITE_TITLE}` + `Search ${SITE_TITLE}` + 'UTF-8' + `${favicon}` + `` + `${URL}` ); } function insertVariableXml(fullXml, xmlToInsert) { return fullXml.replace(/.*/s, xmlToInsert); } module.exports = { getOpenSearchXml, insertVariableXml };