const jsesc = require("jsesc"); /** * Returns a string that represents the javascript that is required to insert the Google Analytics scripts * into a webpage. * @param tagId Google UA/G/AW/DC Property ID to use with the Google Analytics script. * @returns {string} */ function getGoogleAnalyticsScript(tagId) { let escapedTagId = jsesc(tagId, { isScriptContext: true }); if (escapedTagId) { escapedTagId = escapedTagId.trim(); } return ` `; } module.exports = { getGoogleAnalyticsScript, };