(result)
| 26 | }; |
| 27 | |
| 28 | function handleResult(result) { |
| 29 | if (result.output) { |
| 30 | console.log(result.output.join('\n')); |
| 31 | } |
| 32 | if (result.errors) { |
| 33 | console.log(result.errors.join('\n')); |
| 34 | } |
| 35 | throw result; |
| 36 | } |
| 37 | |
| 38 | function applyCommand(command, name /*, ...flags*/) { |
| 39 | let flags = [].slice.call(arguments, 2, arguments.length); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…