* Sends a signal to the underlying process. * @param {string=} opt_signal The signal to send; defaults to `SIGTERM`.
(opt_signal)
| 106 | * @param {string=} opt_signal The signal to send; defaults to `SIGTERM`. |
| 107 | */ |
| 108 | kill(opt_signal) { |
| 109 | KILL_HOOK.get(this)(opt_signal || 'SIGTERM') |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | // PUBLIC API |
no test coverage detected