| 44 | // VM shim for Cloudflare Workers |
| 45 | // JSDOM and some other libraries require vm module |
| 46 | class ScriptShim { |
| 47 | private code: string; |
| 48 | constructor(code: string) { |
| 49 | this.code = code; |
nothing calls this directly
no outgoing calls
no test coverage detected