()
| 177 | } |
| 178 | |
| 179 | function addBeforeInteractiveToCache() { |
| 180 | const scripts = [ |
| 181 | ...document.querySelectorAll('[data-nscript="beforeInteractive"]'), |
| 182 | ...document.querySelectorAll('[data-nscript="beforePageRender"]'), |
| 183 | ] |
| 184 | scripts.forEach((script) => { |
| 185 | const cacheKey = script.id || script.getAttribute('src') |
| 186 | LoadCache.add(cacheKey) |
| 187 | }) |
| 188 | } |
| 189 | |
| 190 | export function initScriptLoader(scriptLoaderItems: ScriptProps[]) { |
| 191 | scriptLoaderItems.forEach(handleClientScriptLoad) |
no test coverage detected