()
| 109 | } |
| 110 | |
| 111 | function ports(): string[] { |
| 112 | return (process.env['SANDBOX_PORTS'] ?? '') |
| 113 | .split(',') |
| 114 | .filter((p) => p.trim()) |
| 115 | .map((p) => p.trim()); |
| 116 | } |
| 117 | |
| 118 | function entrypoint(workdir: string): string[] { |
| 119 | const isWindows = os.platform() === 'win32'; |
no outgoing calls
no test coverage detected