(args: string[])
| 100 | * a malformed `--out=` still counts as an out attempt (fail safe: gate it). |
| 101 | */ |
| 102 | export function hasOutArg(args: string[]): boolean { |
| 103 | return args.some(a => a === '--out' || a.startsWith('--out=')); |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Convert an evaluate() result to its string form — the exact conversion `js`/`eval` |
no outgoing calls
no test coverage detected