(err, stdout, stderr, cmd)
| 329 | return self; |
| 330 | |
| 331 | function cb (err, stdout, stderr, cmd) { |
| 332 | if (cb.called) return; |
| 333 | if (timeoutId) clearTimeout(timeoutId); |
| 334 | cb.called = 1; |
| 335 | if (args[0] !== 'identify' && bin !== 'identify') { |
| 336 | self._in = []; |
| 337 | self._out = []; |
| 338 | } |
| 339 | callback.call(self, err, stdout, stderr, cmd); |
| 340 | } |
| 341 | |
| 342 | function dispose (msg) { |
| 343 | const message = msg ? msg : 'gm() was disposed'; |
no outgoing calls
no test coverage detected