(command, args, options = {})
| 844 | } |
| 845 | |
| 846 | function runText(command, args, options = {}) { |
| 847 | return runBuffer(command, args, options).toString("utf8").trim(); |
| 848 | } |
| 849 | |
| 850 | function runBuffer(command, args, options = {}) { |
| 851 | const result = runCommand(command, args, options); |
no test coverage detected