(command: string, args: string[], options: ExecutionOptions)
| 394 | } |
| 395 | |
| 396 | function sandboxCEWrapper(command: string, args: string[], options: ExecutionOptions) { |
| 397 | const nsOpts = getSandboxCEWrapperOptions(command, args, options); |
| 398 | return executeDirect(execProps<string>('cewrapper'), nsOpts.args, nsOpts.options, nsOpts.filenameTransform); |
| 399 | } |
| 400 | |
| 401 | function executeCEWrapper(command: string, args: string[], options: ExecutionOptions) { |
| 402 | const nsOpts = getExecuteCEWrapperOptions(command, args, options); |
nothing calls this directly
no test coverage detected