let GoogleAnalytics = (() => { function getGoogleAnalyticsScript(tagId) { return "" + ""; } function isValidTag(tagInput) { const re = /^\w{1,2}-\d{8}$/g; return tagInput.match(re) != null; } return { getGoogleAnalyticsScript: getGoogleAnalyticsScript, isValidTag: isValidTag }; })(); module.exports = GoogleAnalytics;