(command, args)
| 661 | } |
| 662 | |
| 663 | async function execJson(command, args) { |
| 664 | return JSON.parse(await execText(command, args)); |
| 665 | } |
| 666 | |
| 667 | async function execText(command, args) { |
| 668 | const { stdout } = await execFileAsync(command, args, { |
no test coverage detected