(cond: string)
| 107 | // sandbox-exec profile (SBPL — a Scheme dialect). Allows reads everywhere |
| 108 | // (most interpreters need to read libs from /usr), restricts writes to tempDir, |
| 109 | // and conditionally allows network outbound. |
| 110 | const allow = (cond: string): string => `(allow ${cond})`; |
| 111 | const networkLines = allowNetwork |
| 112 | ? [ |
no outgoing calls
no test coverage detected