(scope)
| 5 | return ["main.js"]; |
| 6 | }, |
| 7 | moduleScope(scope) { |
| 8 | const link1 = scope.window.document.createElement("link"); |
| 9 | link1.rel = "stylesheet"; |
| 10 | link1.href = "main.css"; |
| 11 | scope.window.document.head.appendChild(link1); |
| 12 | const link2 = scope.window.document.createElement("link"); |
| 13 | link2.rel = "stylesheet"; |
| 14 | link2.href = "vendors.css"; |
| 15 | scope.window.document.head.appendChild(link2); |
| 16 | } |
| 17 | }; |
nothing calls this directly
no test coverage detected