(scope)
| 2 | |
| 3 | module.exports = { |
| 4 | moduleScope(scope) { |
| 5 | const link = scope.window.document.createElement("link"); |
| 6 | link.rel = "stylesheet"; |
| 7 | link.href = "chunk1.css"; |
| 8 | scope.window.document.head.appendChild(link); |
| 9 | } |
| 10 | }; |
nothing calls this directly
no test coverage detected