acb7d7df5a85db3fc6b88b4d00be9215dfcef8ec
When the user provides a function as last argument for socket.emit,
socket.io will flag this as an RPC and add a cb as the last argument
to the client.on('event', ...) handler on the server side.
Without a function as last argument for socket.emit, the callback
argument on the server side is undefined, leading to invalid function
calls (`undefined()`) and an unhandled exception.
The user can also provide lots of other arguments, so the 2nd/3rd ...
argument is of arbitrary type, again leading to invalid function calls
-- e.g. `1()`.
Description
Languages
JavaScript
62.6%
TypeScript
29.5%
SCSS
2.9%
Java
2.1%
Pug
0.8%
Other
1.9%