var env = 'qa' if (window.location.host.indexOf('localhost') > -1) { env = 'dev' } else if (window.location.host === 'auto-digital-retail.capitalone.com' || window.location.host === 'digital-retail.autodriven.com') { env = 'production' } window.DDR_ENV = { hostEnvironment: env, sessionId: generateUUID() } function generateUUID() { var d = new Date().getTime(); if (typeof performance !== 'undefined' && typeof performance.now === 'function') { d += performance.now(); } return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { var r = (d + Math.random() * 16) % 16 | 0; d = Math.floor(d / 16); return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16); }); }