{"version":3,"file":"general/js/main.min.js","mappings":"AASA,SAASA,SAASC,EAAMC,GACtB,IAAIC,EACJ,OAAO,WAAmB,QAAAC,EAAAC,UAAAC,OAANC,EAAI,IAAAC,MAAAJ,GAAAK,EAAA,EAAAA,EAAAL,EAAAK,IAAJF,EAAIE,GAAAJ,UAAAI,GACtB,IAAMC,EAAUC,KAChBC,aAAaT,GACbA,EAAUU,YAAW,kBAAMZ,EAAKa,MAAMJ,EAASH,EAAK,GAAEL,EACxD,CACF,CAEAa,OAAOf,SAAWA","sources":["webpack://project-name/./dev/js/main.js"],"sourcesContent":["/**\r\n * Creates a debounced function that delays invoking the provided function\r\n * until after the specified delay in milliseconds has passed since the last time \r\n * the debounced function was invoked.\r\n *\r\n * @param {Function} func - The function to debounce.\r\n * @param {number} delay - The number of milliseconds to delay the function call.\r\n * @returns {Function} - Returns the debounced function.\r\n */\r\nfunction debounce(func, delay) {\r\n let timeout;\r\n return function (...args) {\r\n const context = this;\r\n clearTimeout(timeout);\r\n timeout = setTimeout(() => func.apply(context, args), delay);\r\n };\r\n}\r\n\r\nwindow.debounce = debounce"],"names":["debounce","func","delay","timeout","_len","arguments","length","args","Array","_key","context","this","clearTimeout","setTimeout","apply","window"],"sourceRoot":""}