* Executes the provided command, returning its stderr. * @param {string} cmd * @param {?Object=} options * @return {string}
(cmd, options)
| 56 | * @return {string} |
| 57 | */ |
| 58 | function getStderr(cmd, options) { |
| 59 | return getOutput(cmd, options).stderr; |
| 60 | } |
| 61 | |
| 62 | module.exports = { |
| 63 | getOutput, |
nothing calls this directly
no test coverage detected