| 32 | ); |
| 33 | |
| 34 | interface RunResult { |
| 35 | status: number | null; |
| 36 | stdout: string; |
| 37 | stderr: string; |
| 38 | } |
| 39 | |
| 40 | function nodeRun(script: string, timeoutMs = 20_000): RunResult { |
| 41 | const r = spawnSync("node", ["--input-type=module", "-e", script], { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…