* @param {string} command * @param {import('node:child_process').ExecSyncOptions} options
(command, options)
| 17 | * @param {import('node:child_process').ExecSyncOptions} options |
| 18 | */ |
| 19 | function execSync(command, options) { |
| 20 | return execSyncOriginal(command, { ...options, encoding: 'utf-8' }); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * @param {string} name |
no outgoing calls
no test coverage detected
searching dependent graphs…