(path: string, content: string)
| 12 | }, |
| 13 | async readFile(path: string) { return { content: files.get(path) ?? "" }; }, |
| 14 | async writeFile(path: string, content: string) { files.set(path, content); }, |
| 15 | }; |
| 16 | return { |
| 17 | namespace: { idFromName: (name: string) => name, get: () => sandbox } as any, |
no outgoing calls
no test coverage detected