In Libuv, uv_process_kill takes a process and a signum, where the signum is required. In Luv although, in luv_parse_signal, if the input is not an integer and not a string, the default value of SIGTERM is used.
Effectively making signum an optional argument with the default string value sigterm.
In Libuv, uv_process_kill takes a process and a signum, where the signum is required. In Luv although, in luv_parse_signal, if the input is not an integer and not a string, the default value of SIGTERM is used.
Effectively making signum an optional argument with the default string value
sigterm
.