I am getting this error: ``` Uncaught exception: TypeError [ERR_UNKNOWN_SIGNAL]: Unknown signal: INT ``` and it was used like: ```js process.kill(num, 'INT'); ``` this works tho: ```js process.kill(num, 'SIGINT'); ``` it should probably work with the short signal names?
I am getting this error:
and it was used like:
this works tho:
it should probably work with the short signal names?