(name)
| 107 | } |
| 108 | |
| 109 | require(name) { |
| 110 | let found = resolved.get(name) |
| 111 | if (!found) throw new Error(`Could not load module '${name}'`) |
| 112 | return this.loaded.get(found.name).exports |
| 113 | } |
| 114 | |
| 115 | async setHTML(code, output) { |
| 116 | this.clearEvents() |
no test coverage detected