( command: string, options?: ExecSyncOptions, )
| 30 | options?: ExecSyncOptions, |
| 31 | ): Buffer | string |
| 32 | export function execSync_DEPRECATED( |
| 33 | command: string, |
| 34 | options?: ExecSyncOptions, |
| 35 | ): Buffer | string { |
| 36 | using _ = slowLogging`execSync: ${command.slice(0, 100)}` |
| 37 | return nodeExecSync(command, options) |
| 38 | } |
no outgoing calls
no test coverage detected