{"version":3,"sources":["../../../../dev/j/v3/pages/windows-antivirus-setCookie-gloweb-8880.js"],"names":["setCookie","cookieValue","currentDate","Date","expirationDate","getTime","expires","toUTCString","document","cookie"],"mappings":"AAAA,GAAIA,WAAY,SAASC,GACrB,YAGA,IAAIC,GAAc,GAAIC,MAGlBC,EAAiB,GAAID,MAAKD,EAAYG,UAAY,SAGlDC,EAAUF,EAAeG,aAG7BC,UAASC,OAAS,YAAcR,EAAc,aAAeK,EAAU","file":"windows-antivirus-setCookie-gloweb-8880.js","sourcesContent":["var setCookie = function(cookieValue) {\n 'use strict';\n\n // Get current date\n var currentDate = new Date();\n\n // Calculate expiration date (180 days from now)\n var expirationDate = new Date(currentDate.getTime() + (180 * 24 * 60 * 60 * 1000));\n\n // Format expiration date as a string compatible with cookie format\n var expires = expirationDate.toUTCString();\n\n // Set the cookie\n document.cookie = \"AT_block=\" + cookieValue + \"; expires=\" + expires + \"; path=/\";\n};\n"]}